export type EvalJudgeOptions = { goal?: string; inputs?: string; out?: string; samples?: number; confidenceThreshold?: number; marginThreshold?: number; positionBias?: "swap" | "none"; }; export declare function evalJudge(inputA: string, inputB: string, opts: EvalJudgeOptions): Promise;