import { SfCommand } from '@salesforce/sf-plugins-core';
import { BundleSObjects } from '@salesforce/packaging';
export type ReportCommandResult = BundleSObjects.PkgBundleVersionInstallReqResult[];
export declare class PackageBundleInstallReportCommand extends SfCommand<ReportCommandResult> {
    static readonly hidden = true;
    static state: string;
    static readonly summary: string;
    static readonly description: string;
    static readonly examples: string[];
    static readonly flags: {
        loglevel: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
        'target-org': import("@oclif/core/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/interfaces").CustomOptions>;
        'api-version': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
        'package-install-request-id': import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
        verbose: import("@oclif/core/interfaces").BooleanFlag<boolean>;
    };
    run(): Promise<ReportCommandResult>;
    private display;
}
