/** * Text rendering for `gjc gc` reports. JSON output is produced directly in * `gc-runtime.ts`; this module owns the human-readable grouped report. */ import type { GcReport } from "./gc-runtime"; export declare function buildGcReportText(report: GcReport): string;