export declare function assertDictionaryOfArrayOfString(name: string, mixed: any): ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfMinLength(name: string, mixed: any, min: number): ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfMinLengthHandler(min: number): (name: string, mixed: any) => ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfMaxLength(name: string, mixed: any, max: number): ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfMaxLengthHandler(max: number): (name: string, mixed: any) => ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfLength(name: string, mixed: any, args: { min?: number; max?: number; }): ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfLengthHandler(args: { min?: number; max?: number; }): (name: string, mixed: any) => ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfNonEmpty(name: string, mixed: any): ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfContains(name: string, mixed: any, x: string): ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfContainsHandler(x: string): (name: string, mixed: any) => ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfNoDuplicate(name: string, mixed: any): ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfNotAllWhitespace(name: string, mixed: any): ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfNonEmptyAndNotAllWhitespace(name: string, mixed: any): ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfMatch(name: string, mixed: any, regex: RegExp): ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfMatchHandler(regex: RegExp): (name: string, mixed: any) => ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfEmail(name: string, mixed: any): ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfNotOneOf(name: string, mixed: any, arr: T[]): ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfNotOneOfHandler(arr: T[]): (name: string, mixed: any) => ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfBase64(name: string, mixed: any): ({ [key: string]: (string)[]; }) | never; export declare function assertDictionaryOfArrayOfJson(name: string, mixed: any): ({ [key: string]: (string)[]; }) | never;