import { FC, PropsWithChildren } from 'react'; import { DataGridRowProps } from '../../../DataGrid'; export type DataGridSelectableRowProps = DataGridRowProps; /** * DataGridSelectableRow groups a set of grid cells under a shared row index */ export declare const DataGridSelectableRow: FC>;