export type RiskLevel = 'LOW' | 'MEDIUM' | 'HIGH'; export type FileRisk = 'HIGH' | 'MEDIUM' | 'NORMAL'; export interface RiskFlags { highFiles: string[]; mediumFiles: string[]; deletedCount: number; largeChange: boolean; scopeViolationCount: number; outOfScopeCount: number; } export declare function classifyFileRisk(rel: string): FileRisk; export declare function computeRiskLevel(flags: RiskFlags): RiskLevel; //# sourceMappingURL=risk.d.ts.map