import { IPluginEventMap, Plugin } from "../types"; interface IControllerButtonPluginEventMap extends IPluginEventMap { click: undefined; } declare class ControllerButtonPlugin extends Plugin { private _childrenEl; title?: string; constructor(Children: JSX.Element, title?: string, className?: string); set Children(v: JSX.Element); set onClick(click: any); set color(c: string); protected beforeDestroy(): void; init(): HTMLButtonElement; } export default ControllerButtonPlugin;