import type { AgentSideConnection } from "@agentclientprotocol/sdk"; import type { Message } from "@strands-agents/sdk"; /** * Replay persisted conversation to the client using ACP session updates. * Emits separate chunks for text vs structured tool call / result updates. */ export declare function replayConversationHistory(connection: AgentSideConnection, sessionId: string, messages: Message[]): Promise;