export declare function promiseDictionaryOfMaybeArray(name: string, mixed: any): Promise<((null | undefined | (any[])) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeMinLength(name: string, mixed: any, min: number): Promise<((null | undefined | (any[])) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeMinLengthHandler(min: number): (name: string, mixed: any) => Promise<((null | undefined | (any[])) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeMaxLength(name: string, mixed: any, max: number): Promise<((null | undefined | (any[])) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeMaxLengthHandler(max: number): (name: string, mixed: any) => Promise<((null | undefined | (any[])) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeLength(name: string, mixed: any, args: { min?: number; max?: number; }): Promise<((null | undefined | (any[])) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeLengthHandler(args: { min?: number; max?: number; }): (name: string, mixed: any) => Promise<((null | undefined | (any[])) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeNonEmpty(name: string, mixed: any): Promise<((null | undefined | (any[])) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeContains(name: string, mixed: any, x: any): Promise<((null | undefined | (any[])) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeContainsHandler(x: any): (name: string, mixed: any) => Promise<((null | undefined | (any[])) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeNoDuplicate(name: string, mixed: any): Promise<((null | undefined | (any[])) | null | undefined)[]>;