import { Key, Vertices } from "./types"; export default function findPath(graph: Vertices, start: Key, end: Key): [number, Key[]] | undefined;