/// import { Node, GraphStateMachineConfig } from '../typings'; import './index.less'; interface NodeProps { node: Node; x: number; y: number; width: number; height: number; onClick: Function; config: GraphStateMachineConfig; active: boolean; } export declare function GraphNode({ node, x, y, width, height, onClick, config, active }: NodeProps): JSX.Element; export {};