/** * semantics/format — rendering one {@link SemanticsReport} for a terminal. * * Pattern: the tool-lint `format.ts` sibling — pure string building, no IO. * Role: lib/ layer, pure. * Emits: N/A. */ import type { SemanticsReport } from './check.js'; /** Render the report. Every finding names its tool and its field — the two * facts a build log must carry for the fix to be a one-line edit. */ export declare function formatSemanticsReport(report: SemanticsReport): string;