export declare function isDictionaryOfMaybeArray(mixed: any): mixed is ((null | undefined | (any[])) | null | undefined)[]; export declare function isDictionaryOfMaybeMinLength(mixed: any, min: number): mixed is ((null | undefined | (any[])) | null | undefined)[]; export declare function isDictionaryOfMaybeMaxLength(mixed: any, max: number): mixed is ((null | undefined | (any[])) | null | undefined)[]; export declare function isDictionaryOfMaybeLength(mixed: any, args: { min?: number; max?: number; }): mixed is ((null | undefined | (any[])) | null | undefined)[]; export declare function isDictionaryOfMaybeNonEmpty(mixed: any): mixed is ((null | undefined | (any[])) | null | undefined)[]; export declare function isDictionaryOfMaybeContains(mixed: any, x: any): mixed is ((null | undefined | (any[])) | null | undefined)[]; export declare function isDictionaryOfMaybeNoDuplicate(mixed: any): mixed is ((null | undefined | (any[])) | null | undefined)[];