export declare function isArrayOfDictionaryOfPotentiallyUnsafeDateString(mixed: any): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfValidDateString(mixed: any): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfBeforeString(mixed: any, x: Date): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfAfterString(mixed: any, x: Date): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfBeforeOrAtString(mixed: any, x: Date): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfAfterOrAtString(mixed: any, x: Date): mixed is ({ [key: string]: string; })[]; export declare function isArrayOfDictionaryOfRangeString(mixed: any, args: { min?: Date; max?: Date; }): mixed is ({ [key: string]: string; })[];