import type ColumnDef from "../../types/ColumnDef"; import type { PivotConfig } from "../../types/PivotTypes"; export type CreatePivotPanelOptions = { fields: ColumnDef[]; pivot: PivotConfig | null; setPivot: (pivot: PivotConfig | null) => void; }; export type PivotPanelInstance = { element: HTMLElement; update: (options: Partial) => void; destroy: () => void; }; /** * Interactive pivot field composer: Available fields + Rows / Columns / Values. */ export declare function createPivotPanel(options: CreatePivotPanelOptions): PivotPanelInstance;