import { h, Component } from 'preact'; import { BaseNodeModel, GraphModel } from 'flow-lcl/core'; interface IProps { x: number; y: number; width: number; height: number; nodeModel: BaseNodeModel; graphModel: GraphModel; style?: CSSStyleDeclaration; hoverStyle?: CSSStyleDeclaration; edgeStyle?: CSSStyleDeclaration; } declare class ControlGroup extends Component { constructor(); getResizeControl(): h.JSX.Element[]; getGroupSolid(): h.JSX.Element; render(): h.JSX.Element; } export default ControlGroup;