type EvalSuite = 'local' | 'langsmith' | 'langfuse'; type EvalAgent = string; interface EvalCommandOptions { project?: string; manifest?: string; skillPath?: string; skillName?: string; profile?: string; task?: string; reportConfig?: string; html?: boolean; quick?: boolean; collect?: boolean; suite?: EvalSuite; agent?: EvalAgent; model?: string; baseUrl?: string; judgeAgent?: EvalAgent; judgeModel?: string; judgeBaseUrl?: string; } export declare function evalRunCommand(options?: EvalCommandOptions): Promise; export declare function evalCollectCommand(options?: EvalCommandOptions): Promise; export declare function evalCommand(target?: string, options?: EvalCommandOptions): Promise; export type { EvalAgent, EvalCommandOptions, EvalSuite }; //# sourceMappingURL=eval.d.ts.map