import { FC } from 'react'; import { YearPickerLayoutProps } from '../YearPickerLayout'; export type YearPickerScrollerLayoutProps = Omit; /** * YearPickerScrollerLayout is a scroll-aware wrapper around * YearPickerLayout. It automatically injects the current virtual * page index (from IndexedSnapScroller) into the layout’s `offset` * prop, allowing the layout to render the correct year grid for each * scroller page. All layout logic remains inside YearPickerLayout. */ export declare const YearPickerScrollerLayout: FC;