import { RouteFeature, RoutingProfile } from '../core/interface'; /** * Get a route between two points using Mapbox Directions API. * Returns a GeoJSON Feature (LineString) or null if not found. */ declare const getItinerary: (from: [number, number], to: [number, number], profile?: RoutingProfile) => Promise; export default getItinerary;