interface ButtonInstanceEventMap extends WorldInstanceEventMap { "click": InstanceEvent; } /** Represents the Button object. * @see {@link https://www.construct.net/make-games/manuals/construct-3/scripting/scripting-reference/plugin-interfaces/button | IButtonInstance documentation } */ declare class IButtonInstance extends IDOMInstance { addEventListener>(type: K, listener: (ev: ButtonInstanceEventMap[K]) => any): void; removeEventListener>(type: K, listener: (ev: ButtonInstanceEventMap[K]) => any): void; text: string; tooltip: string; isEnabled: boolean; isChecked: boolean; }