import { SfCommand } from '@salesforce/sf-plugins-core'; import { BundleSObjects } from '@salesforce/packaging'; export type BundleUninstallResult = BundleSObjects.PkgBundleVerUninstallReqResult; export declare class PackageBundleUninstallCommand 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; wait: import("@oclif/core/interfaces").OptionFlag; verbose: import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; }