export declare function createSvg(type: T): SVGElementTagNameMap[T]; export declare function getTransform(selectedElement: SVGGraphicsElement): SVGTransform; /** * path an arc https://github.com/plotly/plotly.js/blob/587d86cc7d7f91f7618c78f9bf847bcff6ee2ac8/src/lib/angles.js#L106 * * @param r : radius * @param a0 : first angular coordinate in *radians* * @param a1 : second angular coordinate in *radians* * @param cx : x coordinate of center * @param cy : y coordinate of center * @param isClosed - true if path should be closed * @return svg path */ export declare function pathArc(r: number, a0: number, a1: number, cx: number, cy: number, isClosed?: boolean): string; //# sourceMappingURL=svg-utils.d.ts.map