export declare const escapeRegExp: (text: string) => string; export declare const getRegExp: (value: string) => RegExp; export declare const replaceAll: (string: string, key: string | RegExp, value: string) => string; export declare const replaceVariables: (string: string, variables: { key: string; replace: string; }[]) => string;