import { DataFrame } from "./DataFrame"; import { PivotFrame } from "./PivotFrame"; import { PivotProps, DimensionValue } from "./types"; /** * This class exposes internal implementation of PivotFrame, * but it allows you to do optimisation in case you already have indexed prebuilt, * for example from the server response. * It means that the class can break without notice if we will change implementation, * TypeScript will complain though. */ export declare class PivotFramePreindexed extends PivotFrame { constructor(origin: DataFrame, prop: PivotProps & { rowHeadersInternal: DimensionValue[][]; columnHeadersInternal: DimensionValue[][]; columnIndex: number[][]; rowIndex: number[][]; }); } //# sourceMappingURL=PivotFramePreindexed.d.ts.map