import { DaGraph } from "./types"; export declare var nestingGraph: { run: typeof run; cleanup: typeof cleanup; }; declare function run(g: DaGraph): void; declare function cleanup(g: DaGraph): void; export {};