/** * Escapes a given string to be used inside a RegExp. * * Taken from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions */ export declare const escapeRegExp: (text: string) => string;