export declare function promiseDictionaryOfArray(name: string, mixed: any): Promise<{ [key: string]: any[]; }>; export declare function promiseDictionaryOfMinLength(name: string, mixed: any, min: number): Promise<{ [key: string]: any[]; }>; export declare function promiseDictionaryOfMinLengthHandler(min: number): (name: string, mixed: any) => Promise<{ [key: string]: any[]; }>; export declare function promiseDictionaryOfMaxLength(name: string, mixed: any, max: number): Promise<{ [key: string]: any[]; }>; export declare function promiseDictionaryOfMaxLengthHandler(max: number): (name: string, mixed: any) => Promise<{ [key: string]: any[]; }>; export declare function promiseDictionaryOfLength(name: string, mixed: any, args: { min?: number; max?: number; }): Promise<{ [key: string]: any[]; }>; export declare function promiseDictionaryOfLengthHandler(args: { min?: number; max?: number; }): (name: string, mixed: any) => Promise<{ [key: string]: any[]; }>; export declare function promiseDictionaryOfNonEmpty(name: string, mixed: any): Promise<{ [key: string]: any[]; }>; export declare function promiseDictionaryOfContains(name: string, mixed: any, x: any): Promise<{ [key: string]: any[]; }>; export declare function promiseDictionaryOfContainsHandler(x: any): (name: string, mixed: any) => Promise<{ [key: string]: any[]; }>; export declare function promiseDictionaryOfNoDuplicate(name: string, mixed: any): Promise<{ [key: string]: any[]; }>;