import type { Column, ColumnPivotModel, Grid, RowLeaf } from "../../+types";
export declare function createPivotColumns<T>(model: ColumnPivotModel<T>, lookup: Map<string, Column<T>>, grid: Grid<T>, leafRows: RowLeaf<T>[]): Column<T>[];
