import type { AgentRuntime } from "@elizaos/core"; import type { RouteHelpers, RouteRequestMeta } from "./route-helpers"; type AgentStateStatus = "not_started" | "starting" | "running" | "paused" | "stopped" | "restarting" | "error"; export interface AgentLifecycleRouteState { runtime: AgentRuntime | null; agentState: AgentStateStatus; agentName: string; model: string | undefined; startedAt: number | undefined; } export interface AgentLifecycleRouteContext extends RouteRequestMeta, Pick { state: AgentLifecycleRouteState; } export declare function handleAgentLifecycleRoutes(ctx: AgentLifecycleRouteContext): Promise; export {}; //# sourceMappingURL=agent-lifecycle-routes.d.ts.map