import Input from './Input.js'; type MonthInputProps = { maxDate?: Date; minDate?: Date; year?: string | null; } & Omit, 'max' | 'min' | 'name'>; export default function MonthInput({ maxDate, minDate, year, ...otherProps }: MonthInputProps): React.ReactElement; export {};