export declare function isArrayOfMaybeDictionaryOfArray(mixed: any): mixed is ((null | undefined | ({ [key: string]: any[]; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfMinLength(mixed: any, min: number): mixed is ((null | undefined | ({ [key: string]: any[]; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfMaxLength(mixed: any, max: number): mixed is ((null | undefined | ({ [key: string]: any[]; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfLength(mixed: any, args: { min?: number; max?: number; }): mixed is ((null | undefined | ({ [key: string]: any[]; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfNonEmpty(mixed: any): mixed is ((null | undefined | ({ [key: string]: any[]; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfContains(mixed: any, x: any): mixed is ((null | undefined | ({ [key: string]: any[]; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfNoDuplicate(mixed: any): mixed is ((null | undefined | ({ [key: string]: any[]; })) | null | undefined)[];