/** SVGEDit canvas will "sanitize" the SVG and remove all oimotion animations. we capture them on load and restore them on save. @important This code is needed for a specific usage and will be removed in the future. */ declare const exports: { saveOIAttr: (svgContent: string) => string; restoreOIAttr: (svgContent: string, attributes: string) => string; }; export default exports;