export declare const regexp: regexp; export interface regexp { (pattern: string): RegExp; (strings: TemplateStringsArray, ...keys: string[]): RegExp; [k: string]: regexp & { (condition: boolean): regexp; }; }