interface SvgNode { type: string; props: Record; children?: SvgNode[]; } declare function parseSvg(svgString: string): SvgNode; export { type SvgNode, parseSvg };