import type { PivotCellRole } from "./PivotCellRole.js"; export type PivotGridCell = { row: number; col: number; role: PivotCellRole; kind: string; value?: string; };