import type { RuleSet, ScanResult, Severity } from "@hookwarden/engine"; import type { StaleSuppression } from "../suppress/stale.js"; export declare const SARIF_LEVEL_BY_SEVERITY: Readonly>; export interface RenderSarifInputs { readonly scanResult: ScanResult; readonly ruleSet: RuleSet | null; readonly stale: ReadonlyArray; } export declare function renderSarif(inputs: RenderSarifInputs): string; //# sourceMappingURL=sarif.d.ts.map