import { Command } from "commander"; export interface CheckResult { name: string; status: "ok" | "warn" | "fail"; detail: string; suggestion?: string; } export declare function runChecks(): CheckResult[]; export declare function formatJson(checks: CheckResult[]): string; export declare function createDoctorCommand(): Command;