import type { AggregatedCell, EvalRunResult } from "../types.js"; export declare function loadRunResult(runId: string, outDir?: string): Promise; export declare function listRuns(outDir?: string): Promise; export declare function loadLatestMatrix(outDir?: string): Promise<{ matrixId: string; cells: readonly AggregatedCell[]; }>;