/** * SARIF (Static Analysis Results Interchange Format) reporter. * Produces output compatible with GitHub Code Scanning. */ import type { InterviewResult } from '../interview/types.js'; import type { BehavioralDiff, CIFinding } from '../baseline/types.js'; /** * Generate SARIF report from interview results. */ export declare function generateSarifReport(result: InterviewResult, serverUri?: string): string; /** * Generate SARIF report from behavioral diff. */ export declare function generateSarifFromDiff(diff: BehavioralDiff, serverUri?: string): string; /** * Generate SARIF from CI findings. */ export declare function generateSarifFromFindings(findings: CIFinding[], serverUri?: string): string; //# sourceMappingURL=sarif-reporter.d.ts.map