import type { TrafficParams } from "../schemas/traffic/trafficSchema"; export declare function createTrafficHandler(): (params: TrafficParams) => Promise<{ content: { type: "text"; text: string; }[]; isError?: undefined; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>;