/**
 * Escapes a string so that it can be put into RegExp as a variable
 *
 * @example
 * new RegExp(`foo-${escapeRegExp('(bar)')}`, 'i')
 */ export declare function escapeRegExp(string: string): string;
