export declare function isArrayOfDictionaryOfPotentiallyUnsafeDate(mixed: any): mixed is ({ [key: string]: Date; })[]; export declare function isArrayOfDictionaryOfValidDate(mixed: any): mixed is ({ [key: string]: Date; })[]; export declare function isArrayOfDictionaryOfBefore(mixed: any, x: Date): mixed is ({ [key: string]: Date; })[]; export declare function isArrayOfDictionaryOfAfter(mixed: any, x: Date): mixed is ({ [key: string]: Date; })[]; export declare function isArrayOfDictionaryOfBeforeOrAt(mixed: any, x: Date): mixed is ({ [key: string]: Date; })[]; export declare function isArrayOfDictionaryOfAfterOrAt(mixed: any, x: Date): mixed is ({ [key: string]: Date; })[]; export declare function isArrayOfDictionaryOfRange(mixed: any, args: { min?: Date; max?: Date; }): mixed is ({ [key: string]: Date; })[];