export declare function isDictionaryOfArrayOfString(mixed: any): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfMinLength(mixed: any, min: number): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfMaxLength(mixed: any, max: number): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfLength(mixed: any, args: { min?: number; max?: number; }): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfNonEmpty(mixed: any): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfContains(mixed: any, x: string): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfNoDuplicate(mixed: any): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfNotAllWhitespace(mixed: any): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfNonEmptyAndNotAllWhitespace(mixed: any): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfMatch(mixed: any, regex: RegExp): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfEmail(mixed: any): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfNotOneOf(mixed: any, arr: T[]): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfBase64(mixed: any): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfJson(mixed: any): mixed is { [key: string]: (string)[]; };