import { FC } from 'react'; import './datepicker.css'; export interface MilaDatePickerProps { onChange?: (e: any) => void; onBlur?: (e: any) => void; onFocus?: (e: any) => void; label?: string; selected?: unknown; error?: unknown; hideError?: boolean; [x: string]: unknown; locale: string; disabled: boolean; filterDate?: (date: Date | number) => boolean; } declare const MilaDatePicker: FC; export default MilaDatePicker;