import { FunctionComponent } from 'react'; import { Node } from '../Models/Node'; export declare type ShapeProps = { node: Node; selected: boolean; unselected: boolean; dragging: boolean; onConnectionDrag: () => void; onConnectionEnd: () => void; connectionCandidate: boolean; }; export declare const ShapeEnd: FunctionComponent;