export declare const SVGNS = "http://www.w3.org/2000/svg"; export declare function drawSVGPath(e: SVGElement, path: string, x: number, y: number, scaleX: number, scaleY: number, opacity?: number): SVGElement; export declare function drawSVGText(e: SVGElement, text: string, x: number, y: number, fontSize: string, isBold?: boolean, scaleX?: number, scaleY?: number): SVGElement; export declare function createSVGGroupChild(e: SVGElement, id: string): SVGElement; export declare function setFade(e: SVGElement, bounce?: boolean, from?: number, to?: number): SVGElement; export declare function setFill(e: SVGElement, color: string): void; export declare function setStroke(e: SVGElement, strokeWidth: number, color: string): void; export declare function highlightElement(e: SVGElement, color: string): void;