export declare function isEmail(value: string): boolean; export declare function isUrl(value: string): boolean; export declare function isDate(value: string | Date): boolean; export declare const validators: { isEmail: typeof isEmail; isUrl: typeof isUrl; isDate: typeof isDate; };