import * as GOptions from "./z_options"; import { DataName } from "../common/enums"; /** * SVGPathElementを生成します。 * @param parent 生成したSVGPathElementを子に追加する要素 * @param x 開始位置のX座標 * @param y 開始位置のY座標 * @param x2 終了位置のX座標 * @param y2 終了位置のY座標 * @param className SVGPathElementのクラス属性名 * @returns 生成されたSVGPathElement */ export declare function createPath(parent: SVGElement | HTMLElement, x: number, y: number, x2: number, y2: number, className: string | GOptions.surfaceClassCSS, style: string | undefined | GOptions.surfaceClassCSS): SVGPathElement; /** * SVGTextElementを生成します。 * @param className 生成するSVG要素のクラス属性名 * @returns 生成されたSVGTextElement */ export declare function createSVGText(className: string | undefined | null, style: string | undefined, dataName: DataName | null): SVGTextElement;