export declare function anyOf(...parts: (RegExp | string)[]): RegExp; export declare function noneOf(...parts: (RegExp | string)[]): RegExp; export declare function anyWordBut(...parts: (RegExp | string)[]): RegExp; export declare function wordList(words: string[], { ignoreCase, wholeWords, flexibleSpaces, // turn spaces into \s+ so "New York" matches captureName, }?: { ignoreCase?: boolean; wholeWords?: boolean; flexibleSpaces?: boolean; captureName?: string; }): RegExp; export declare function quantifier(minCount?: number, maxCount?: number | undefined | null): string; //# sourceMappingURL=builders.d.ts.map