import type { Run, RunMeta } from "../config/types.js"; /** * Persists a Run artifact to disk as JSON. * Returns the file path. */ export declare function saveRun(run: Run, baseDir?: string): Promise; /** * Loads a Run artifact from disk and validates against RunSchema. */ export declare function loadRun(runId: string, baseDir?: string): Promise; /** * Lists all stored runs with minimal metadata. * Reads only the top-level fields from each run file. */ export declare function listRuns(baseDir?: string): Promise; //# sourceMappingURL=run-store.d.ts.map