import { FC } from 'react'; import { DayPickerScrollerProps } from '../../../../DayPicker'; export type CalendarDayPickerScrollerProps = DayPickerScrollerProps; /** * `CalendarDayPickerScroller` integrates the low-level `DayPickerScroller` * with the high-level calendar state and navigation logic provided by * `useCalendarContext()`. It synchronizes scroll snapping with the * calendar’s internal month navigation model and exposes a unified * imperative API reference for external control. */ export declare const CalendarDayPickerScroller: FC;