import { GraphData, Matrix } from "./types"; declare const floydWarshall: (graphData: GraphData, directed?: boolean) => Matrix[]; export default floydWarshall;