export declare function isArrayOfMaybeDictionaryOfString(mixed: any): mixed is ((null | undefined | ({ [key: string]: string; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfMinLength(mixed: any, min: number): mixed is ((null | undefined | ({ [key: string]: string; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfMaxLength(mixed: any, max: number): mixed is ((null | undefined | ({ [key: string]: string; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfLength(mixed: any, args: { min?: number; max?: number; }): mixed is ((null | undefined | ({ [key: string]: string; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfNonEmpty(mixed: any): mixed is ((null | undefined | ({ [key: string]: string; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfContains(mixed: any, x: string): mixed is ((null | undefined | ({ [key: string]: string; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfNoDuplicate(mixed: any): mixed is ((null | undefined | ({ [key: string]: string; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfNotAllWhitespace(mixed: any): mixed is ((null | undefined | ({ [key: string]: string; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfNonEmptyAndNotAllWhitespace(mixed: any): mixed is ((null | undefined | ({ [key: string]: string; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfMatch(mixed: any, regex: RegExp): mixed is ((null | undefined | ({ [key: string]: string; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfEmail(mixed: any): mixed is ((null | undefined | ({ [key: string]: string; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfNotOneOf(mixed: any, arr: T[]): mixed is ((null | undefined | ({ [key: string]: string; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfBase64(mixed: any): mixed is ((null | undefined | ({ [key: string]: string; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfJson(mixed: any): mixed is ((null | undefined | ({ [key: string]: string; })) | null | undefined)[];