import React from 'react'; import { INodeRender } from '../types'; import { INode } from '../types/node'; export declare const NODE_TYPE_MAP: { [key: string]: React.FC; }; export declare const DEFAULT_NODE_CONFIG: { START: { height: number; width: number; background: string; color: string; toolsStyle: { background: string; }; }; END: { height: number; width: number; background: string; color: string; toolsStyle: { background: string; }; }; TASK: { height: number; width: string; minWidth: number; color: string; background: string; selectedStyle: { borderColor: string; }; hoveredStyle: { borderColor: string; }; toolsStyle: { background: string; }; }; RELATION: { height: number; width: number; color: string; background: string; toolsStyle: { background: string; }; }; }; declare const nodeRender: INodeRender; export default nodeRender;