import { FC } from 'react'; import { DayPickerScrollerLayoutProps } from '../../../../DayPicker'; export type CalendarDayPickerScrollerLayoutProps = DayPickerScrollerLayoutProps; /** * `CalendarDayPickerScrollerLayout` is a calendar-scoped wrapper around * the `DayPickerScrollerLayout` primitive. It defines the structural * blueprint for laying out day rows inside a scrollable day picker while * delegating all mechanics to the underlying `DayPicker` system. */ export declare const CalendarDayPickerScrollerLayout: FC;