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