export declare function promiseDictionaryOfPotentiallyUnsafeDateString(name: string, mixed: any): Promise<{ [key: string]: string; }>; export declare function promiseDictionaryOfValidDateString(name: string, mixed: any): Promise<{ [key: string]: string; }>; export declare function promiseDictionaryOfBeforeString(name: string, mixed: any, x: Date): Promise<{ [key: string]: string; }>; export declare function promiseDictionaryOfBeforeStringHandler(x: Date): (name: string, mixed: any) => Promise<{ [key: string]: string; }>; export declare function promiseDictionaryOfAfterString(name: string, mixed: any, x: Date): Promise<{ [key: string]: string; }>; export declare function promiseDictionaryOfAfterStringHandler(x: Date): (name: string, mixed: any) => Promise<{ [key: string]: string; }>; export declare function promiseDictionaryOfBeforeOrAtString(name: string, mixed: any, x: Date): Promise<{ [key: string]: string; }>; export declare function promiseDictionaryOfBeforeOrAtStringHandler(x: Date): (name: string, mixed: any) => Promise<{ [key: string]: string; }>; export declare function promiseDictionaryOfAfterOrAtString(name: string, mixed: any, x: Date): Promise<{ [key: string]: string; }>; export declare function promiseDictionaryOfAfterOrAtStringHandler(x: Date): (name: string, mixed: any) => Promise<{ [key: string]: string; }>; export declare function promiseDictionaryOfRangeString(name: string, mixed: any, args: { min?: Date; max?: Date; }): Promise<{ [key: string]: string; }>; export declare function promiseDictionaryOfRangeStringHandler(args: { min?: Date; max?: Date; }): (name: string, mixed: any) => Promise<{ [key: string]: string; }>;