import { Command, CommandOptions } from '../types';
export declare class UpdateCommand implements Command {
    name: string;
    description: string;
    execute(options: CommandOptions): Promise<void>;
    private getCurrentVersion;
    private getLatestVersion;
    private compareVersions;
    private performUpdate;
    private runCommand;
}
