import { type LoopOptions, type LoopState, type LoopStore } from "./state"; export declare class MemoryLoopStore implements LoopStore { private readonly loopStates; startLoop(sessionId: string, options?: LoopOptions): void; stopLoop(sessionId: string): void; isActive(sessionId: string): boolean; getLoopState(sessionId: string): LoopState | undefined; incrementIteration(sessionId: string): void; markCompletionDetected(sessionId: string): void; clearAllForTests(): void; }