import type { CustomSvg } from '../types/dom'; export declare const createMainPath: (d: string, color: string) => SVGPathElement; export declare const createLinkSvg: (klass: string) => SVGSVGElement; export declare const createLine: (x1: number, y1: number, x2: number, y2: number) => SVGLineElement; export declare const createPath: (d: string, color: string) => SVGPathElement; export declare const createSvgGroup: (d: string, arrowd: string) => CustomSvg;