export interface MonthPickerProps {
    value: Date;
    onMonthSelect: (month: number) => void;
}
