/** * Troubleshoot Command - drift troubleshoot * * Diagnoses common issues and provides targeted fixes. * Helps users resolve problems without searching documentation. */ import { Command } from 'commander'; export interface TroubleshootOptions { format?: 'text' | 'json'; verbose?: boolean; fix?: boolean; } export declare const troubleshootCommand: Command; //# sourceMappingURL=troubleshoot.d.ts.map