export declare function isArrayOfDictionaryOfString(mixed: any): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfMinLength(mixed: any, min: number): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfMaxLength(mixed: any, max: number): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfLength(mixed: any, args: { min?: number; max?: number; }): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfNonEmpty(mixed: any): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfContains(mixed: any, x: string): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfNoDuplicate(mixed: any): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfNotAllWhitespace(mixed: any): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfNonEmptyAndNotAllWhitespace(mixed: any): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfMatch(mixed: any, regex: RegExp): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfEmail(mixed: any): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfNotOneOf(mixed: any, arr: T[]): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfBase64(mixed: any): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfJson(mixed: any): mixed is ({ [key: string]: string; })[];