export declare function assertArrayOfDictionaryOfString(name: string, mixed: any): (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfMinLength(name: string, mixed: any, min: number): (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfMinLengthHandler(min: number): (name: string, mixed: any) => (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfMaxLength(name: string, mixed: any, max: number): (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfMaxLengthHandler(max: number): (name: string, mixed: any) => (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfLength(name: string, mixed: any, args: { min?: number; max?: number; }): (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfLengthHandler(args: { min?: number; max?: number; }): (name: string, mixed: any) => (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfNonEmpty(name: string, mixed: any): (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfContains(name: string, mixed: any, x: string): (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfContainsHandler(x: string): (name: string, mixed: any) => (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfNoDuplicate(name: string, mixed: any): (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfNotAllWhitespace(name: string, mixed: any): (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfNonEmptyAndNotAllWhitespace(name: string, mixed: any): (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfMatch(name: string, mixed: any, regex: RegExp): (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfMatchHandler(regex: RegExp): (name: string, mixed: any) => (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfEmail(name: string, mixed: any): (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfNotOneOf(name: string, mixed: any, arr: T[]): (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfNotOneOfHandler(arr: T[]): (name: string, mixed: any) => (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfBase64(name: string, mixed: any): (({ [key: string]: string; })[]) | never; export declare function assertArrayOfDictionaryOfJson(name: string, mixed: any): (({ [key: string]: string; })[]) | never;