/** * Lightweight WMF (Windows Metafile) to SVG converter. * * Handles the subset of WMF records commonly used by PowerPoint: * vector paths (lines, polygons, polylines), brushes, pens, text output, * and embedded bitmaps (StretchDIBits). * * Supports both Standard and Placeable WMF formats. * * Falls back gracefully — returns empty string if parsing fails. */ /** * Convert WMF binary data to an SVG string. * Returns empty string if the data cannot be parsed. */ export declare function wmfToSvg(data: Uint8Array): string; //# sourceMappingURL=wmf-converter.d.ts.map