/** * AI Triage - Reduce false positives from static scan */ import type { Finding } from '../../types.js'; import type { TriagedFinding } from './types.js'; export declare function triageFinding(finding: Finding, fileContent: string, filePath: string): Promise; /** * Triage multiple findings in batch */ export declare function triageFindings(findings: Finding[], fileContents: Map): Promise; //# sourceMappingURL=triage.d.ts.map