import type { PairwiseVerdict, InputVerdict } from "./types.js"; export type JudgePairArgs = { inputId: string; goal: string; recordPathA: string; recordPathB: string; order?: "AB" | "BA"; }; export declare function judgePair(args: JudgePairArgs): Promise; export declare function judgePairwise(goal: string, recordPathA: string, recordPathB: string): Promise;