import { FC } from 'react'; type DatePickerProps = { disabled?: boolean; error?: boolean; errorMessage?: string; label?: string; selectedDate?: null | Date; onChange: (date: null | Date) => void; }; declare const DatePicker: FC; export default DatePicker;