/** * @param {Context} context * @param {string|null|undefined} input * @param {SafeOptions & {encode?: Array}} config * @returns {string} */ export function safe(context: Context, input: string | null | undefined, config: SafeOptions & { encode?: Array; }): string; export type Context = import('../types.js').Context; export type SafeOptions = import('../types.js').SafeOptions;