/** * Lightweight EMF (Enhanced Metafile) to SVG converter. * * Handles the subset of EMF records commonly used by PowerPoint: * vector paths (bezier curves, lines), brushes, pens, clip paths, * text output, and embedded bitmaps. * * Falls back gracefully — returns empty string if parsing fails. */ /** * Convert EMF binary data to an SVG string. * Returns empty string if the data cannot be parsed. */ export declare function emfToSvg(data: Uint8Array): string; //# sourceMappingURL=emf-converter.d.ts.map