/** * Eval command - Evaluate agent performance */ export interface EvalOptions { input?: string; expected?: string; iterations?: number; warmup?: number; 'expected-tools'?: string; criteria?: string; threshold?: number; model?: string; verbose?: boolean; profile?: string; config?: string; output?: 'json' | 'text' | 'pretty'; json?: boolean; } export declare function execute(args: string[], options: EvalOptions): Promise;