/**
 * Cleans a string from regex injection
 * @param str The string to clean
 */
declare function regExpEsc(str: string): string;

export { regExpEsc };
