import type { ConversationCache } from "../conversation-cache"; import type { ManagedSession } from "../types"; import type { AgentClient } from "./agent-client"; import type { AgentConfig } from "./agent-config"; export interface SendInputBody { text?: string; } export interface SendAgentInputDeps { sessionStore: { getManaged: (sessionId: string) => ManagedSession | null; }; cache: ConversationCache; agentClient: AgentClient; agentConfig: AgentConfig; } export interface SendAgentInputResult { status: number; body: Record; } export declare function handleSendAgentInput(sessionId: string, body: SendInputBody, deps: SendAgentInputDeps): Promise; //# sourceMappingURL=handle-send-agent-input.d.ts.map