import type { MindElixirInstance } from '../types';
import type { CustomSvg } from '../types/dom';
export declare const createPath: (d: string, color: string, width: string) => SVGPathElement;
export declare const createLinkSvg: (klass: string) => SVGSVGElement;
export declare const createLine: () => SVGLineElement;
export declare const createSvgGroup: (d: string, arrowd1: string, arrowd2: string) => CustomSvg;
export declare const editSvgText: (mei: MindElixirInstance, textEl: SVGTextElement, onblur: (div: HTMLDivElement) => void) => void;
