import { MixedType } from './MixedType'; import { ErrorMessageType } from './types'; import { DateTypeLocale } from './locales'; export declare class DateType extends MixedType { constructor(errorMessage?: E | string); range(min: string | Date, max: string | Date, errorMessage?: E | string): this; min(min: string | Date, errorMessage?: E | string): this; max(max: string | Date, errorMessage?: E | string): this; } export default function getDateType(errorMessage?: E): DateType;