/** * Research state persistence — file-backed JSON store. */ import type { ResearchState } from "../types/index.js"; export declare class ResearchStateStore { private filePath; constructor(repoPath: string, statePath: string); load(): Promise; save(state: ResearchState): Promise; initialize(tag: string, branch: string): Promise; update(patch: Partial): Promise; }