import { IPortDesc } from '../type';
import Node from '../node';
import Graph from './graph';
declare const build: (G: Graph<IPortDesc, Node>) => (_rootNode: any) => void;
export default build;
