import Graph from "node-dijkstra"; import type { node, linkLookup, graphInput } from "./nodes"; export declare function buildLinkLookups(nodeCollection: Array, lfrc: number): { links: linkLookup; graphInput: graphInput; }; export declare function getGraph(input: graphInput): Graph;