export declare function promiseArrayOfDictionaryOfPotentiallyUnsafeDate(name: string, mixed: any): Promise<({ [key: string]: Date; })[]>; export declare function promiseArrayOfDictionaryOfValidDate(name: string, mixed: any): Promise<({ [key: string]: Date; })[]>; export declare function promiseArrayOfDictionaryOfBefore(name: string, mixed: any, x: Date): Promise<({ [key: string]: Date; })[]>; export declare function promiseArrayOfDictionaryOfBeforeHandler(x: Date): (name: string, mixed: any) => Promise<({ [key: string]: Date; })[]>; export declare function promiseArrayOfDictionaryOfAfter(name: string, mixed: any, x: Date): Promise<({ [key: string]: Date; })[]>; export declare function promiseArrayOfDictionaryOfAfterHandler(x: Date): (name: string, mixed: any) => Promise<({ [key: string]: Date; })[]>; export declare function promiseArrayOfDictionaryOfBeforeOrAt(name: string, mixed: any, x: Date): Promise<({ [key: string]: Date; })[]>; export declare function promiseArrayOfDictionaryOfBeforeOrAtHandler(x: Date): (name: string, mixed: any) => Promise<({ [key: string]: Date; })[]>; export declare function promiseArrayOfDictionaryOfAfterOrAt(name: string, mixed: any, x: Date): Promise<({ [key: string]: Date; })[]>; export declare function promiseArrayOfDictionaryOfAfterOrAtHandler(x: Date): (name: string, mixed: any) => Promise<({ [key: string]: Date; })[]>; export declare function promiseArrayOfDictionaryOfRange(name: string, mixed: any, args: { min?: Date; max?: Date; }): Promise<({ [key: string]: Date; })[]>; export declare function promiseArrayOfDictionaryOfRangeHandler(args: { min?: Date; max?: Date; }): (name: string, mixed: any) => Promise<({ [key: string]: Date; })[]>;