interface DoctorOptions { json: boolean; fix: boolean; } export declare function handleDoctor(ctx: { claudeJsonPath: string; accountsDirPath: string; }, opts: DoctorOptions, deps?: { now?: () => number; }): void; export {};