import { Org } from '@salesforce/core'; import { Duration } from '@salesforce/kit'; import { Interfaces } from '@oclif/core'; import { SandboxCommandBase, SandboxCommandResponse } from '../../../shared/sandboxCommandBase.js'; export default class ResumeSandbox extends SandboxCommandBase { static summary: string; static description: string; static examples: string[]; static readonly aliases: string[]; static readonly deprecateAliases = true; static flags: { wait: Interfaces.OptionFlag; name: Interfaces.OptionFlag; 'job-id': Interfaces.OptionFlag; 'use-most-recent': Interfaces.BooleanFlag; 'target-org': Interfaces.OptionFlag; }; private flags; run(): Promise; protected getCheckSandboxStatusParams(): string[]; private createResumeSandboxRequest; private resumeSandbox; private buildSandboxRequestCacheEntry; private verifyIfAuthExists; }