import type { MessageDebugClearReceipt, MessageDebugEntry } from "./message-debug-types.js"; /** 网关内的调试旁路;仅保存有界 JSON 快照,不持有业务对象或连接。 */ export declare class GatewayMessageDebugStore { private readonly entries; private seq; recordInbound(platform: string, account_id: string, payload: unknown): void; recordOutbound(platform: string, account_id: string, protocol: string, version: string, payload: unknown): void; getHistory(): MessageDebugEntry[]; clear(): MessageDebugClearReceipt; private push; } //# sourceMappingURL=message-debug-store.d.ts.map