/** * Returns a matrix of all distances between all nodes (O(n**3)) * * @param graph */ declare function floydWarshall(graph: number[][]): number[][]; export { floydWarshall };