import { type DoctorReport } from "./types.js"; export interface RenderOptions { /** ANSI colour. Off for files and for anything that is not a terminal. */ color?: boolean; /** Print each check's structured facts. */ verbose?: boolean; } export declare function renderDoctorReport(report: DoctorReport, options?: RenderOptions): string;