import type { RoutingParams, WaypointRoutingParams, ReachableRangeParams } from "../schemas/routing/routingSchema"; export declare function createRoutingHandler(): (params: RoutingParams) => Promise<{ content: { text: string; type: "text"; }[]; isError?: undefined; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>; export declare function createWaypointRoutingHandler(): (params: WaypointRoutingParams) => Promise<{ content: { text: string; type: "text"; }[]; isError?: undefined; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>; export declare function createReachableRangeHandler(): (params: ReachableRangeParams) => Promise<{ content: { text: string; type: "text"; }[]; isError: boolean; } | { content: { text: string; type: "text"; }[]; isError?: undefined; }>;