import type { SubagentRunRecord } from "./subagent-registry.types.js"; export declare function persistSubagentRunsToDisk(runs: Map): void; export declare function restoreSubagentRunsFromDisk(params: { runs: Map; mergeOnly?: boolean; }): number; export declare function getSubagentRunsSnapshotForRead(inMemoryRuns: Map): Map;