/// type DataGridInfiniteTableRowProps> = { row: TData; renderCells: (row: TData, rowId: string) => JSX.Element[]; keyId: keyof TData; isSelectable: boolean; selectedRows: TData[]; onRowClick?: ((row: TData) => void) | undefined; onSelectRow?: (row: TData[]) => void; activeRowId?: string; }; export declare const DataGridInfiniteTableRow: >({ row, keyId, isSelectable, selectedRows, onRowClick, onSelectRow, activeRowId, renderCells, ...props }: DataGridInfiniteTableRowProps) => JSX.Element; export {};