import { h, RectNode, RectNodeModel } from 'flow-lcl/core'; declare class RectResizeModel extends RectNodeModel { setAttributes(): void; } declare class RectResizeView extends RectNode { getControlGroup(attributes: any): h.JSX.Element; getResizeShape(arrt: any): h.JSX.Element; getShape(): h.JSX.Element; } declare const RectResize: { type: string; view: typeof RectResizeView; model: typeof RectResizeModel; }; export default RectResize;