import type { VerificationReport } from "./verify.js"; /** * Render a {@link VerificationReport} (drift / doctor / future scan probes) as a * SARIF 2.1.0 document GitHub code-scanning can ingest. Pure — no I/O. Every check * becomes one result; each distinct check name becomes one rule. Repo-global probes * stay location-less (valid SARIF); file-backed findings can attach a physical * location and stable fingerprint for code-scanning triage. */ export declare function reportToSarif(report: VerificationReport, toolName?: string): string;