/** * Trajectory API routes for the Milady Control UI. * * Provides endpoints for: * - Listing and searching trajectories * - Viewing trajectory details with LLM calls and provider accesses * - Exporting trajectories to JSON, CSV, or ZIP * - Deleting trajectories * - Getting trajectory statistics * - Enabling/disabling trajectory logging * * Uses the @elizaos/plugin-trajectory-logger service for data access. */ import type http from "node:http"; import type { AgentRuntime } from "@elizaos/core"; export declare function handleTrajectoryRoute(req: http.IncomingMessage, res: http.ServerResponse, runtime: AgentRuntime, pathname: string, method: string): Promise; //# sourceMappingURL=trajectory-routes.d.ts.map