import { vi } from "vitest"; import { createWebInboundDeliverySpies } from "./auto-reply.test-harness.js"; import type { WebInboundMessage } from "./inbound.js"; export declare function monitorWebChannelWithCapture(resolver: unknown): Promise<{ spies: ReturnType; onMessage: (msg: WebInboundMessage) => Promise; }>; export declare function sendWebDirectInboundAndCollectSessionKeys(): Promise<{ seen: string[]; resolver: ReturnType; }>;