import { DataGridSelectableProps, DataGridSelection } from '../DataGridSelectable'; import { DataGridPickerSize, DataGridPickerVariant } from './types'; import { DataGridCellKey } from '../DataGrid'; export interface DataGridPickerProps extends DataGridSelectableProps { /** * Controls the item’s visual size. * Useful for adapting the picker to compact or large layouts. */ size?: DataGridPickerSize; /** * Visual appearance preset for the picker. */ variant?: DataGridPickerVariant; } /** * DataGridPicker is a higher-level component built on top of DataGridSelectable that allows users to pick or highlight elements (cells) within a selectable grid */ export declare const DataGridPicker: ({ wrap, size, excludeDisabled, variant, children, ...props }: DataGridPickerProps) => import("react/jsx-runtime").JSX.Element;