import type { ReplyPayload } from "../../auto-reply/types.js"; import type { RuntimeEnv } from "../../runtime.js"; import type { createIMessageRpcClient } from "../client.js"; import type { SentMessageCache } from "./echo-cache.js"; export declare function deliverReplies(params: { replies: ReplyPayload[]; target: string; client: Awaited>; accountId?: string; runtime: RuntimeEnv; maxBytes: number; textLimit: number; sentMessageCache?: Pick; }): Promise;