export interface YearPickerProps {
    value: Date;
    onYearSelect: (year: number) => void;
}
