import SfpowerscriptsCommand from '../../SfpowerscriptsCommand'; export default class Delete extends SfpowerscriptsCommand { static description: string; protected static requiresDevhubUsername: boolean; static examples: string[]; static flags: { targetdevhubusername: import("@oclif/core/lib/interfaces").OptionFlag; tag: import("@oclif/core/lib/interfaces").OptionFlag; allscratchorgs: import("@oclif/core/lib/interfaces").BooleanFlag; inprogressonly: import("@oclif/core/lib/interfaces").BooleanFlag; orphans: import("@oclif/core/lib/interfaces").BooleanFlag; apiversion: import("@oclif/core/lib/interfaces").OptionFlag; loglevel: import("@oclif/core/lib/interfaces").OptionFlag; }; execute(): Promise<{ orgId: string; username: string; operation: string; }[]>; private pushToResults; private displayScrathOrgOperationsAsTable; }