import { FC, PropsWithChildren } from 'react'; import { DataGridPickerScrollerContentProps } from '../../../DataGridPicker'; export type DayPickerScrollerContentProps = Omit; /** * DayPickerScrollerContent is a styled wrapper around * IndexedSnapScrollerContent, representing a single paged “month” * within a scrollable DayPicker. * * It applies DayPicker-specific layout styles while preserving all * snapping, indexing, and focus behavior provided by the underlying * scroller system. * * By omitting the `index` prop, the component automatically receives * its page index from the surrounding IndexedSnapScroller context. */ export declare const DayPickerScrollerContent: FC>;