import type { RunEvaluationOptions } from "./types.js"; /** * Run all scheduled trials and return the run artifact directory. * * Each agent profile runs against the same task/attempt pairs. The function * writes schedule and trial artifacts, calculates custom metrics, rebuilds the * report, and prints the renderer's terminal output. * * @returns Absolute path to the completed run directory. * @throws If the suite, agent profiles, metrics, or selected task are invalid, * or if a Pi trial fails. */ export declare function runEvaluation(options: RunEvaluationOptions): Promise;