import type { EvalScheduleInput, EvalTask, EvalTrial } from "./types.js"; /** * Build a deterministic balanced schedule for any number of agent profiles. * * The same task/attempt gets one `pairId`; agent profile order is rotated and reversed * from the stable seed so each agent profile occupies different positions over time. * */ export declare function createEvalSchedule(input: EvalScheduleInput): readonly EvalTrial[];