export declare function tryGetPropertyValue(item: CSSStyleDeclaration, name: string): string | null; /** * SVGTextElementのテキストを設定します。 * @param text 設定するテキスト * @param isLatexMode TrueのときLatex表記を使用します。 */ export declare function setTextContent(item: SVGTextPathElement, text: string, isLatexMode?: boolean): void; /** * SVGLineElementを強調するかどうかを設定します。 * @param b Trueなら強調。Falseなら強調しません。 */ export declare function setEmphasis(item: SVGLineElement, value: boolean): void; export declare function getEmphasis(item: SVGLineElement): boolean; /** * SVGPathElementの位置を設定します。 * @param points */ export declare function setPathLocations(item: SVGPathElement, points: [number, number][]): void; /** * SVGPathElementの位置を取得します。 */ export declare function getPathLocations(item: SVGPathElement): [number, number][];