import type { Routes } from "@tomtom-org/maps-sdk/core"; /** * Extract waypoint positions from a Routes response. * Returns coordinate pairs (start, intermediate stops, end) that can be * passed directly to RoutingModule.showWaypoints() — the SDK handles * icon assignment (ORIGIN, MIDDLE, DESTINATION) automatically. */ export declare function extractWaypointPositionsFromRoutes(routes: Routes): [number, number][];