export declare function isMaybeArrayOfDictionaryOfString(mixed: any): mixed is null | undefined | (({ [key: string]: string; })[]); export declare function isMaybeArrayOfDictionaryOfMinLength(mixed: any, min: number): mixed is null | undefined | (({ [key: string]: string; })[]); export declare function isMaybeArrayOfDictionaryOfMaxLength(mixed: any, max: number): mixed is null | undefined | (({ [key: string]: string; })[]); export declare function isMaybeArrayOfDictionaryOfLength(mixed: any, args: { min?: number; max?: number; }): mixed is null | undefined | (({ [key: string]: string; })[]); export declare function isMaybeArrayOfDictionaryOfNonEmpty(mixed: any): mixed is null | undefined | (({ [key: string]: string; })[]); export declare function isMaybeArrayOfDictionaryOfContains(mixed: any, x: string): mixed is null | undefined | (({ [key: string]: string; })[]); export declare function isMaybeArrayOfDictionaryOfNoDuplicate(mixed: any): mixed is null | undefined | (({ [key: string]: string; })[]); export declare function isMaybeArrayOfDictionaryOfNotAllWhitespace(mixed: any): mixed is null | undefined | (({ [key: string]: string; })[]); export declare function isMaybeArrayOfDictionaryOfNonEmptyAndNotAllWhitespace(mixed: any): mixed is null | undefined | (({ [key: string]: string; })[]); export declare function isMaybeArrayOfDictionaryOfMatch(mixed: any, regex: RegExp): mixed is null | undefined | (({ [key: string]: string; })[]); export declare function isMaybeArrayOfDictionaryOfEmail(mixed: any): mixed is null | undefined | (({ [key: string]: string; })[]); export declare function isMaybeArrayOfDictionaryOfNotOneOf(mixed: any, arr: T[]): mixed is null | undefined | (({ [key: string]: string; })[]); export declare function isMaybeArrayOfDictionaryOfBase64(mixed: any): mixed is null | undefined | (({ [key: string]: string; })[]); export declare function isMaybeArrayOfDictionaryOfJson(mixed: any): mixed is null | undefined | (({ [key: string]: string; })[]);