import { FC } from 'react'; import { CalendarBasePickerButtonProps } from '../../../CalendarBase'; export type CalendarYearPickerButtonProps = CalendarBasePickerButtonProps; /** * `CalendarYearPickerButton` is the calendar-scoped trigger for opening or * toggling the year-picker view. It wraps `CalendarBasePickerButton` and * connects user interaction to the `Calendar` state machine through * `useCalendarContext()`. */ export declare const CalendarYearPickerButton: FC;