import { EvalQuestionSet } from "./retrieval-eval.types"; /** * Reads a question set from YAML and validates it. * * Fails loudly and specifically: a malformed ground truth that loads anyway * would silently weaken every later comparison, which is the opposite of what * this harness exists for. * * Mirrors the YAML-loading style of `core/model-manager/model-loader.ts`. */ export declare class QuestionSetLoader { load(params: { path: string; }): EvalQuestionSet; } //# sourceMappingURL=question-set.loader.d.ts.map