import CellValue from "./CellValue"; type Row = Record>; /** * Constraint for consumer row shapes on generic table APIs. * Defaults on those APIs remain {@link Row}; use a domain interface as `TData` * (e.g. `ColumnDef`) without requiring an index signature. */ export type RowData = unknown; export default Row;