import { Destination, NearestResult, RoutingProfile } from '../core/interface'; /** * Returns all destinations ordered by ascending distance using Mapbox Matrix API */ declare const findNearestDestination: (from: [number, number], destinations: Destination[], profile?: RoutingProfile, maxDistanceMeters?: number) => Promise; export default findNearestDestination;