import { Coordinates, RouteResult, RouteOptions, ReachableRangeOptions, ReachableRangeResult } from "./types"; export declare function getRoute(origin: Coordinates, destination: Coordinates, options?: RouteOptions): Promise; export declare function getMultiWaypointRoute(waypoints: Coordinates[], options?: RouteOptions): Promise; /** * Calculate reachable range (isochrone) from a location * @param origin Starting point coordinates * @param options Range options including time/distance/energy budget and vehicle parameters * @returns Reachable range polygon */ export declare function getReachableRange(origin: Coordinates, options: ReachableRangeOptions): Promise;