import { FC } from 'react'; import { DayPickerLayoutProps } from '../DayPickerLayout'; export type DayPickerScrollerLayoutProps = Omit; /** * DayPickerScrollerLayout is a scroller-aware wrapper around * DayPickerLayout. It automatically injects the current page `index` * from IndexedSnapScroller into the layout's `offset` prop, enabling * month-by-month paging when used inside a DayPickerScroller. * * This component contains no additional logic — it simply binds the * grid generator to the scroller's virtual index, ensuring that each * snapped page renders the correct shifted month. */ export declare const DayPickerScrollerLayout: FC;