interface MonthPickerProps { /** Currently selected date (used to highlight the active month). */ value: Date | null; /** Year currently shown in the grid. */ displayedYear: number; /** Callback when the user navigates to a different year. */ onYearChange: (year: number) => void; /** Callback when a month is picked. */ onSelect: (date: Date) => void; /** Predicate to disable an entire month (any day in it returning true disables the month). */ isDisabled?: (date: Date) => boolean; /** Locale code for month-name formatting. */ locale?: string; } declare const MonthPicker: ({ value, displayedYear, onYearChange, onSelect, isDisabled, locale, }: MonthPickerProps) => import("react/jsx-runtime").JSX.Element; export { MonthPicker };