import { TValidateDateProps } from './types'; export declare const validateDate: ({ min, max, required, invalidFormatMessage, format, }: TValidateDateProps) => (value?: Date | string) => string | boolean;