import { ZForeignObject } from "./z_foreign_object"; import { ShapeObjectType } from "../common/enums"; export declare class ZForeignButton extends ZForeignObject { private _button; constructor(svgbox: SVGElement | string); get type(): ShapeObjectType; initializeSetBasicOption(source: SVGElement): void; get width(): number; set width(value: number); /** 頂点の高さを返します。 */ get height(): number; set height(value: number); }