/** * File persistence for exploration data and generated tests. * Stores JSON files in `.test-explorations/` directory. */ import type { ExplorationResult, GeneratedTestSuite } from "../autopilot/types.js"; export declare class ExplorationStore { private readonly storeDir; constructor(cwd?: string); private getExplorationPath; private getTestsPath; private ensureDir; saveExploration(result: ExplorationResult): Promise; getExploration(id: string): Promise; listExplorations(): Promise>; saveTests(suite: GeneratedTestSuite): Promise; getTests(explorationId: string): Promise; getStoreDir(): string; } //# sourceMappingURL=exploration-store.d.ts.map