import React from 'react';
interface DateProps {
    id?: string;
    label?: string;
    placeholder?: string;
    helperText?: string;
    errorMsg?: string;
    value?: string | undefined | null;
    onChange: (value: string) => void;
    disabledDay?: string;
    selectedEndDate?: string;
    success?: boolean;
    disabled?: boolean;
    size?: 'small' | 'medium' | 'large';
    clearable?: boolean;
    disablePastDays?: boolean;
    timePicker?: boolean;
    isEndDay?: boolean;
    defaultFormat?: string;
    required?: boolean;
    acceptSameDay?: boolean;
    setCheckDateOpened?: (opened: boolean) => void;
    maxDate?: string;
    minDate?: string;
    className?: string;
    dataId?: string;
}
declare const Date: React.FC<DateProps>;
export default Date;
