export interface EvalSpec { prompt: string; expected_behavior: string[]; description?: string; category?: string; } export declare function parseEvalSpec(yamlContent: string): EvalSpec;