import { FC } from 'react'; import { IndexedSnapScrollerContentProps } from '../../../IndexedSnapScroller'; export type DataGridPickerScrollerContentProps = IndexedSnapScrollerContentProps; /** * DataGridPickerScrollerContent is a thin wrapper around IndexedSnapScrollerContent * used within DataGridPicker. * * It exists for semantic clarity and API consistency, allowing picker-related * layouts to explicitly depend on a scroller-aware content container without * introducing additional behavior. */ export declare const DataGridPickerScrollerContent: FC;