export type Cell = { rowspan: number; colspan: number; }; export type Coordinate = { row: number; col: number; }; export type Bounds = { start: Coordinate; end: Coordinate; }; export declare function createCellCoordinateCalculator(cells: Cell[], totalColumns: number): (cellIndex: number) => Bounds;