import { RowId } from "./RowId"; type Cell = { colIndex: number; rowId: RowId; rowIndex: number; }; export default Cell;