declare class PackageVersionUpdateCommand {
    [property: string]: any;
    constructor();
    /**
     * Convert the list of command line options to a JSON object that can be used to update an Package2Version entity.
     *
     * @param context
     * @returns {{Id: (string|string|string), Name: (string|string), Description: (string|string), Branch: (string|string), Tag: (string|string), IsReleased: (boolean}}
     * @private
     */
    _updatePackageVersionRequestFromContext(context: any): {};
    execute(context: any): Promise<any>;
    _execute(context: any): Promise<any>;
    getHumanSuccessMessage(result: any): any;
}
export = PackageVersionUpdateCommand;
