import { FC } from 'react'; import { ReactDatePickerProps } from 'react-datepicker'; import { BaseInputProps } from '../../../types'; export interface InputDate extends Omit, BaseInputProps { onChange?: (date: Date | null | undefined) => void; defaultValue?: Date | null; } declare const InputDate: FC; export default InputDate;