import type { InteractionRequest, InteractionStore } from './types.js'; export declare class InMemoryInteractionStore implements InteractionStore { private requests; save(request: InteractionRequest): void; get(requestId: string): InteractionRequest | undefined; listPending(sessionId: string): InteractionRequest[]; listPendingByThread(threadId: string | number): InteractionRequest[]; update(requestId: string, updates: Partial): void; delete(requestId: string): void; } //# sourceMappingURL=store.d.ts.map