/**
 * This uninstalls a package in to a target org.
 *
 * @param context: heroku context
 * @returns {*|promise}
 */
declare class PackageUninstallCommand {
    [property: string]: any;
    constructor(pollIntervalInMillis?: any);
    poll(context: any, id: any, retries: any): any;
    execute(context: any): any;
    _execute(context: any): any;
    /**
     * returns a human readable message for a cli output
     *
     * @returns {string}
     */
    getHumanSuccessMessage(result: any): any;
}
export = PackageUninstallCommand;
