import type { LLMProvider } from '../types.js'; import type { SkillFile } from '../skills/skill-store.js'; export interface ValidationResult { passed: boolean; score: number; issues: string[]; regressions: string[]; } export declare function validateSkillConsistency(skill: SkillFile, testCases: string[], provider: LLMProvider, config: { model: string; }): Promise; //# sourceMappingURL=l5-adversarial.d.ts.map