/** * Pure markdown renderer for explore reports. Deliberately NOT a `Reporter` adapter — * `Reporter.emit` takes a verdict-shaped `Result`, and a findings report is not a verdict; * hosts get the `ExploreReport` object and render it with this (or their own) function. */ import type { ExploreReport } from "../../core/explore/index.js"; export declare function renderExploreReport(report: ExploreReport): string;