/** * DOCX Module - Chart Writer * * Generates DrawingML chart part XML (word/charts/chartN.xml) from * high-level Chart definitions. */ import type { XmlSink } from "../../xml/types.js"; import type { Chart } from "../types.js"; /** Render a chart part (word/charts/chartN.xml). */ export declare function renderChartPart(xml: XmlSink, chart: Chart): void;