/** * Drop-in replacement for a local AgentRuntime when running in cloud mode. * Routes chat/status calls through the ElizaCloudClient to the remote sandbox. */ import type { ChatChannelType, ElizaCloudClient } from "./bridge-client"; export declare class CloudRuntimeProxy { private client; private agentId; private _agentName; constructor(client: ElizaCloudClient, agentId: string, _agentName: string); get agentName(): string; handleChatMessage(text: string, roomId?: string, channelType?: ChatChannelType): Promise; handleChatMessageStream(text: string, roomId?: string, channelType?: ChatChannelType): AsyncGenerator; getStatus(): Promise<{ state: string; agentName: string; }>; isAlive(): Promise; } //# sourceMappingURL=cloud-proxy.d.ts.map