import { SfCommand } from '@salesforce/sf-plugins-core'; import { BundleSObjects } from '@salesforce/packaging'; import { Org } from '@salesforce/core'; export type BundleInstall = BundleSObjects.PkgBundleVersionInstallReqResult; export declare class PackageBundlesInstall extends SfCommand { static readonly hidden = true; static state: string; static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly requiresProject = true; static readonly flags: { loglevel: import("@oclif/core/interfaces").OptionFlag; bundle: import("@oclif/core/interfaces").OptionFlag; 'target-org': import("@oclif/core/interfaces").OptionFlag; 'api-version': import("@oclif/core/interfaces").OptionFlag; 'dev-hub-org': import("@oclif/core/interfaces").OptionFlag; wait: import("@oclif/core/interfaces").OptionFlag; verbose: import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; }