export interface OpenLRDecodeOptions { searchRadius?: number | undefined; targetBearing?: number | undefined; } export declare function decodeOpenLRReference(openLRRef: string, options: OpenLRDecodeOptions): Promise<{ route: { length: number; linkid: string; }[]; nodes: string[]; routeLength: number; openLRRef: string; openLRDistance: number; } | { route: null; nodes: null; routeLength: null; openLRRef: string; openLRDistance: number; }>;