export interface Threat { severity: 'critical' | 'high' | 'medium' | 'low'; description: string; line: number; pattern?: string; } export interface ScanResult { score: number; threats: Threat[]; scannedAt: string; } /** * Security scanning engine for SKILL.md files * Uses pattern matching to detect common threats */ export declare function scanSkill(skillPath: string): Promise; /** * Get threat severity color for display */ export declare function getSeverityColor(severity: 'critical' | 'high' | 'medium' | 'low'): string; /** * Generate security report summary */ export declare function generateSecurityReport(result: ScanResult): string; //# sourceMappingURL=skillguard.d.ts.map