/** * SARIF v2.1.0 formatter — generates SARIF-compliant JSON for CI tools. * * Enables integration with GitHub Code Scanning, VS Code SARIF Viewer, * and other standard static analysis result consumers. */ import type { AuditResult } from "../audit-types.js"; /** * Format an AuditResult as SARIF v2.1.0 JSON string. */ export declare function formatSarif(result: AuditResult): string;