import type { Element } from "domhandler"; import type { DocxBlock } from "./types.js"; export declare function isSvgElement(element: Element): boolean; /** * Low-complexity SVG → native DOCX vector-ish blocks (no rasterization). * Supports stacked `` bars (e.g. funnel/bar charts) rendered as centered * shaded paragraph bands, plus `` labels. Painter's-algorithm overlap is * resolved so visible band heights match the browser render. */ export declare function convertSvg(svg: Element): DocxBlock[]; //# sourceMappingURL=svg.d.ts.map