/** * Cleans a string from regex injection * @param str The string to clean */ declare const regExpEsc: (str: string) => string; export { regExpEsc };