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