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