import { SfCommand } from '@salesforce/sf-plugins-core'; export type ScratchDeleteResponse = { orgId: string; username: string; }; export default class DeleteScratch 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; 'no-prompt': import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; }