/** * DOM utility functions for SVG manipulation */ export declare const document: Document; export declare const DOMParser: { new (): DOMParser; prototype: DOMParser; }, XMLSerializer: { new (): XMLSerializer; prototype: XMLSerializer; }; /** * Creates a new DOM parser instance */ export declare function createDOMParser(): DOMParser; /** * Creates a new XML serializer instance */ export declare function createXMLSerializer(): XMLSerializer; /** * Gets the SVG namespace URI */ export declare const SVG_NAMESPACE = "http://www.w3.org/2000/svg";