export interface Check { name: string; ok: boolean; detail: string; } export declare function collectCodexDoctorChecks(): Promise; export declare function formatCodexDoctorReport(checks: Check[]): { text: string; failed: number; }; export declare function codexDoctorReport(): Promise<{ text: string; failed: number; }>; export declare function codexDoctor(): Promise;