import { type FC } from 'react'; /** * Documentation props https://reactdatepicker.com/ */ export interface DatePickerProps { /** Overwrite className */ className?: string; /** Label calendar */ label?: string; /** Disabled state */ disabled?: boolean; /** Placeholder calendar */ placeholder?: string; /** Error calendar */ error?: string; /** Clear inputDate*/ isClearable?: boolean; /** MinDate state*/ minDate?: any; /** MaxDate state*/ maxDate?: any; /** SelectedDate state*/ selectedDate?: Date; /** DisabledNavigation for past days*/ disabledNavigation?: boolean; /** AutoCloseOnSelect state -> for always opened calendar cases*/ autoCloseOnSelect?: boolean; /** ExcludeDates state */ excludeDates?: any; /** IncludeDates state */ includeDates?: any; /** Locale state */ locale?: string; /** OnChange function callback */ onChange?: (date: Date) => void; } /** * Calendar component * Documentation props https://reactdatepicker.com/ */ declare const DatePicker: FC; export default DatePicker;