import { AdjacentList } from './DependencyHelper';
export default class BatchingTopoSort {
    sort(dag: AdjacentList): any[];
    private countInDegrees;
    private getRoots;
    private getNonRoots;
}
