/** * EvalRecorder — forwards `agentfootprint.eval.*` emits to the dispatcher. * * Pattern: Factory over EmitBridge. * Role: Bridges consumer-emitted `eval.score` + `eval.threshold_crossed` * events to typed listeners. Evaluation is a consumer concern * (LLM-based grading, heuristic checks, reference-output diffs), * so the library only provides transport — not any built-in * evaluators. * Emits: agentfootprint.eval.score / eval.threshold_crossed */ import { EmitBridge, type EmitBridgeOptions } from './EmitBridge.js'; export type EvalRecorderOptions = Omit & { readonly id?: string; }; export declare function evalRecorder(options: EvalRecorderOptions): EmitBridge;