import { FC } from 'react'; interface InputYearProps { onChange?: (value?: string | null) => void; defaultValue?: Date | null; disabled?: boolean; placeholder?: string; } declare const InputYear: FC; export default InputYear;