import { Node } from '../../core/Node.js'; /** * Chart node extension for OOXML chart drawings. * * Represents an embedded chart (bar, line, pie, etc.) imported from a DOCX file. * The node is atomic and inline, matching the pattern used by image and vectorShape nodes. * * Key attributes: * - `chartData`: Normalized ChartModel parsed from chart XML * - `chartRelId`: Relationship ID for the chart part * - `chartPartPath`: Path to chart XML in the docx package * - `width`/`height`: Dimensions from wp:extent * - `originalXml`: Raw drawing XML for lossless round-trip export */ export const Chart: Node, Record, Record>; //# sourceMappingURL=chart.d.ts.map