import { GForeignObject } from "./x_foreign_object"; import { ShapeObjectType } from "../common/enums"; import * as GOptions from "./x_options"; export declare class GForeignButton extends GForeignObject { private _button; constructor(svgbox: SVGElement | string); get type(): ShapeObjectType; protected setBasicOption(option: GOptions.GTextBoxAttributes): void; get width(): number; set width(value: number); /** 頂点の高さを返します。 */ get height(): number; set height(value: number); }