import { type TableFeatures, type RowData, type Row, type Table } from '@tanstack/react-table'; import { type JSX } from 'react'; /** * DataTable row selection header. * @internal */ export declare function RowSelectionHeader(props: Readonly<{ table: Table; }>): JSX.Element; /** * DataTable row selection cell. * @internal */ export declare function RowSelectionCell(props: Readonly<{ row: Row; }>): JSX.Element; //# sourceMappingURL=RowSelectionCells.d.ts.map