import type { EvalRunRecord } from './types.ts'; /** * Append-only JSONL history per member. Each eval run appends one JSON line * to `.agenthood/evals/history/.jsonl`. No overwrite — history grows * until explicitly cleared. */ export declare class RunHistory { private readonly member; private readonly rootDir; constructor(member: string, rootDir?: string); static historyPath(member: string, rootDir?: string): string; append(record: EvalRunRecord): void; load(): EvalRunRecord[]; loadForSuite(suiteName: string): EvalRunRecord[]; clear(): void; private loadFiltered; } //# sourceMappingURL=runHistory.d.ts.map