import { SVGElementNode } from '../types';
export declare function parseSVG(svgString: string): SVGElementNode;
export declare function findElementById(tree: SVGElementNode, id: string): SVGElementNode | null;
/**
 * Serializes an SVG element tree back to string format
 */
export declare function serializeSVG(svgTree: SVGElementNode): string;
