export declare const oneOrMany: (...regexes: string[]) => string; export declare const zeroOrMany: (...regexes: string[]) => string; export declare const zeroOrOne: (...regexes: string[]) => string; export declare const not: (...regexes: string[]) => string; export declare const set: (...regexes: string[]) => string; export declare const group: (...regexes: string[]) => string; export declare const compose: (...regexes: string[]) => string; export declare const multiple: (regex: string, least?: number, most?: number) => string;