import { IPortDesc } from '../type';
import Graph from './graph';
import Node from '../node';
import Flow from '../base/flow';
export interface ISortedNodeMap {
    r: Node[];
    w: Node[];
    t: Node[];
}
declare const run: (G: Graph<IPortDesc, Node>) => (sortedNodes: ISortedNodeMap, flow: Flow) => void;
export default run;
