import type { Input } from "./runTypes.js"; export type ReadEvalRunInput = { inputId: string; input?: Input; recordPath?: string; status: "ok" | "missing" | "failed"; errorMessage?: string; }; export type ReadEvalRunResult = { runDir: string; inputsById: Record; }; export declare function readEvalRun(runDir: string): ReadEvalRunResult;