import { type Lang } from './i18n.js'; type Level = 'ok' | 'warn' | 'fail' | 'info'; interface CheckRow { level: Level; title: string; detail: string; } declare function line(row: CheckRow): string; export declare function collectDoctorRows(lang?: Lang): Promise; export declare function runDoctor(): Promise; export declare const _internal: { line: typeof line; }; export {}; //# sourceMappingURL=doctor.d.ts.map