import type { Scorer } from "../interfaces.ts"; export interface BinaryDispatcher { dispatch(opts: { agent: string; input: unknown; expectedOutput: unknown; }): Promise<{ pass: boolean; cost_usd: number; latency_ms: number; rationale?: string; }>; } export declare function binaryScorer(passAgent: string, deps: BinaryDispatcher): Scorer; //# sourceMappingURL=binary-scorer.d.ts.map