import { WatchdogInterventionRecord, type AgentRunState } from "../../../domain/sentinel/watchdog/intervention.js"; export declare class WatchdogInterventionStore { private readonly store; constructor(workspaceRoot: string); record(entry: WatchdogInterventionRecord): Promise; readAll(): Promise; tail(limit: number): Promise; } export declare class AgentRunStateStore { private readonly store; constructor(workspaceRoot: string); list(): Promise; get(runId: string): Promise; upsert(state: AgentRunState): Promise; remove(runId: string): Promise; } //# sourceMappingURL=watchdog-store.d.ts.map