import { StorageService } from '../storage/storage.service'; import { SyncService } from '../sync/sync.service'; export declare class DoctorService { private readonly storageService; private readonly syncService; constructor(storageService: StorageService, syncService: SyncService); inspect(rootDir?: string): Promise<{ rootDir: string; checks: Array<{ name: string; status: 'ok' | 'warn'; detail: string; }>; syncedDocsCount: number; syncedDocs: string[]; degradedDocs: string[]; staleDocs: string[]; commands: string[]; }>; private pushExistsCheck; }