/** * Pure markdown renderer for suite results. Not a `Reporter` adapter — that port is per-run * (`Result`-shaped); a suite summary spans runs. Hosts get the `SuiteResult` object and this * (or their own) renderer. */ import type { SuiteResult } from "../../suite.js"; export declare function renderSuiteReport(suite: SuiteResult): string;