import { FC } from 'react'; import { YearPickerScrollerProps } from '../../../../YearPicker'; export type CalendarYearPickerScrollerProps = YearPickerScrollerProps; /** * `CalendarYearPickerScroller` is a calendar-scoped alias for the * `YearPickerScroller` component. It provides the scrollable viewport * used by `CalendarYearPicker` to navigate through large ranges of years, * while delegating all interactive and virtualized scrolling behavior to * the underlying year-picker implementation. */ export declare const CalendarYearPickerScroller: FC;