import type { PivotTable, CellValue } from '../core/types.js'; export interface PivotBuildResult { pivotTableXml: string; cacheDefXml: string; cacheRecordsXml: string; } export declare function buildPivotTableFiles(pt: PivotTable, sourceData: CellValue[][], pivotId: number, cacheId: number): PivotBuildResult;