import { Command, CommandOptions } from '../types';
export declare class ExplainCommand implements Command {
    name: string;
    description: string;
    private cerebrasService?;
    private getCerebrasService;
    execute(options: CommandOptions): Promise<void>;
    private showAnalysisMenu;
    private executeCommand;
    private getDetailedExplanation;
}
