export declare const sysSvgUrl: { 'straight-line': string; band: string; curve: string; }; export declare function getSvgProps(node: Element): { name: string; props: {}; children: any; }; export declare function renderSvg(svgEl: any, wrapper: any): any; export declare function getPNode(svg?: SVGSVGElement): SVGPathElement | null; export declare function getRad(start: any, end: any): number; export declare function getLinerColor(color: any): { range: any; colorsArr: any; } | null; export declare function getPointCon(node: SVGPathElement, i: number, totleLength: number): { x: number; y: number; rotate: number; };