import { Edge } from '@antv/graphlib'; import { EdgeData, Graph } from '../../types'; declare const longestPath: (g: Graph) => void; declare const longestPathWithLayer: (g: Graph) => void; declare const slack: (g: Graph, e: Edge) => number; export { longestPath, longestPathWithLayer, slack };