import CellValue from "./CellValue"; import { Accessor } from "./ColumnDef"; import Row from "./Row"; import type { RowData } from "./Row"; type CellChangeProps = { accessor: Accessor; newValue: TValue; row: TData; }; export default CellChangeProps;