export declare function isDictionaryOfMaybeArrayOfArray(mixed: any): mixed is ((null | undefined | ((any[])[])) | null | undefined)[]; export declare function isDictionaryOfMaybeArrayOfMinLength(mixed: any, min: number): mixed is ((null | undefined | ((any[])[])) | null | undefined)[]; export declare function isDictionaryOfMaybeArrayOfMaxLength(mixed: any, max: number): mixed is ((null | undefined | ((any[])[])) | null | undefined)[]; export declare function isDictionaryOfMaybeArrayOfLength(mixed: any, args: { min?: number; max?: number; }): mixed is ((null | undefined | ((any[])[])) | null | undefined)[]; export declare function isDictionaryOfMaybeArrayOfNonEmpty(mixed: any): mixed is ((null | undefined | ((any[])[])) | null | undefined)[]; export declare function isDictionaryOfMaybeArrayOfContains(mixed: any, x: any): mixed is ((null | undefined | ((any[])[])) | null | undefined)[]; export declare function isDictionaryOfMaybeArrayOfNoDuplicate(mixed: any): mixed is ((null | undefined | ((any[])[])) | null | undefined)[];