import type { PositionGridCell } from "../types.js"; import type { DataRect } from "./types.js"; /** * Returns the bounding `DataRect` for a single grid cell position. When the * cell has a span root the rect covers the full span extent; otherwise it * covers exactly one row and one column. */ export declare function rectFromGridCellPosition(position: PositionGridCell): DataRect;