import type { ImStreamClient } from "./connection.js"; export interface PlanWsTarget { client: ImStreamClient; replyToMsgId: string; } /** 按 groupId 覆盖登记(新一轮会话的 client 取代旧的)。 */ export declare function setPlanWsClient(groupId: string, client: ImStreamClient, replyToMsgId: string): void; export declare function getPlanWsClient(groupId: string): PlanWsTarget | undefined; /** 测试用:重置模块级缓存 */ export declare function resetPlanWsRegistryForTest(): void; //# sourceMappingURL=plan-ws-registry.d.ts.map