import type { DoctorReport } from "./doctor.js"; export interface RenderOptions { /** Show the welcome banner instead of the plain header. */ onboarding?: boolean; /** Show every check, not just the next thing to fix. */ all?: boolean; } export declare function renderDoctorReport(report: DoctorReport, opts?: RenderOptions): string; //# sourceMappingURL=doctor-render.d.ts.map