import { SfCommand } from '@salesforce/sf-plugins-core'; import { DeleteAllResult } from '../../../shared/deleteUtils.js'; export type OrgShapeDeleteResult = { orgId: string; } & DeleteAllResult; export declare class OrgShapeDeleteCommand extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly aliases: string[]; static readonly deprecateAliases = true; static readonly flags: { 'target-org': import("@oclif/core/interfaces").OptionFlag; 'api-version': import("@oclif/core/interfaces").OptionFlag; loglevel: import("@oclif/core/interfaces").OptionFlag; 'no-prompt': import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; }