import type { AgentRuntimeHealthSummary } from '../../shared/snapshot.js'; export declare class AgentHealthStore { private readonly options; private readonly store; constructor(options?: { animaHome?: string; }); directory(): string; filename(): string; path(): string; ensureDirectory(): Promise; get(agentId: string): Promise; update(agentId: string, apply: (previous: AgentRuntimeHealthSummary | undefined) => AgentRuntimeHealthSummary): Promise; clear(agentId: string): Promise; private animaHome; } export declare const defaultAgentHealthStore: AgentHealthStore; //# sourceMappingURL=agent-health.store.d.ts.map