import type { InteractionModeSource } from '../utils/interaction-mode.js'; import type { DoctorReport } from './types.js'; export interface FormatOptions { verbose?: boolean; } export declare function formatReport(report: DoctorReport, options?: FormatOptions): void; export declare function formatInteractionModeSource(source: InteractionModeSource): string;