export declare function assertMaybeDictionaryOfArrayOfString(name: string, mixed: any): (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfMinLength(name: string, mixed: any, min: number): (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfMinLengthHandler(min: number): (name: string, mixed: any) => (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfMaxLength(name: string, mixed: any, max: number): (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfMaxLengthHandler(max: number): (name: string, mixed: any) => (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfLength(name: string, mixed: any, args: { min?: number; max?: number; }): (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfLengthHandler(args: { min?: number; max?: number; }): (name: string, mixed: any) => (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfNonEmpty(name: string, mixed: any): (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfContains(name: string, mixed: any, x: string): (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfContainsHandler(x: string): (name: string, mixed: any) => (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfNoDuplicate(name: string, mixed: any): (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfNotAllWhitespace(name: string, mixed: any): (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfNonEmptyAndNotAllWhitespace(name: string, mixed: any): (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfMatch(name: string, mixed: any, regex: RegExp): (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfMatchHandler(regex: RegExp): (name: string, mixed: any) => (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfEmail(name: string, mixed: any): (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfNotOneOf(name: string, mixed: any, arr: T[]): (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfNotOneOfHandler(arr: T[]): (name: string, mixed: any) => (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfBase64(name: string, mixed: any): (null | undefined | ({ [key: string]: (string)[]; })) | never; export declare function assertMaybeDictionaryOfArrayOfJson(name: string, mixed: any): (null | undefined | ({ [key: string]: (string)[]; })) | never;