import type { Edge, EdgeLabel, Graph, GraphLabel, NodeLabel } from "../types"; export { longestPath, slack }; declare function longestPath(graph: Graph): void; declare function slack(graph: Graph, edge: Edge): number; //# sourceMappingURL=util.d.ts.map