import React from "react"; import type { CalendarTheme } from "../types/theme"; export interface YearPickerProps { currentYear: number; onYearSelect: (year: number) => void; minYear?: number; maxYear?: number; theme?: CalendarTheme; } export declare function YearPicker({ currentYear, onYearSelect, minYear, maxYear, theme, }: YearPickerProps): React.JSX.Element;