export declare function isArrayOfDictionaryOfArray(mixed: any): mixed is ({ [key: string]: any[]; })[]; export declare function isArrayOfDictionaryOfMinLength(mixed: any, min: number): mixed is ({ [key: string]: any[]; })[]; export declare function isArrayOfDictionaryOfMaxLength(mixed: any, max: number): mixed is ({ [key: string]: any[]; })[]; export declare function isArrayOfDictionaryOfLength(mixed: any, args: { min?: number; max?: number; }): mixed is ({ [key: string]: any[]; })[]; export declare function isArrayOfDictionaryOfNonEmpty(mixed: any): mixed is ({ [key: string]: any[]; })[]; export declare function isArrayOfDictionaryOfContains(mixed: any, x: any): mixed is ({ [key: string]: any[]; })[]; export declare function isArrayOfDictionaryOfNoDuplicate(mixed: any): mixed is ({ [key: string]: any[]; })[];