import { Duration } from '@salesforce/kit'; import { Interfaces } from '@oclif/core'; import { SandboxCommandBase, SandboxCommandResponse } from '../../../shared/sandboxCommandBase.js'; import { SandboxLicenseType } from '../../../shared/orgTypes.js'; export default class CreateSandbox extends SandboxCommandBase { static summary: string; static description: string; static examples: string[]; static readonly aliases: string[]; static readonly deprecateAliases = true; static flags: { 'definition-file': Interfaces.OptionFlag; 'set-default': Interfaces.BooleanFlag; alias: Interfaces.OptionFlag; wait: Interfaces.OptionFlag; 'poll-interval': Interfaces.OptionFlag; async: Interfaces.BooleanFlag; name: Interfaces.OptionFlag; 'source-sandbox-name': Interfaces.OptionFlag; 'source-id': Interfaces.OptionFlag; 'license-type': Interfaces.OptionFlag; 'target-org': Interfaces.OptionFlag; 'no-prompt': Interfaces.BooleanFlag; 'no-track-source': Interfaces.BooleanFlag; }; private flags; run(): Promise; protected getCheckSandboxStatusParams(): string[]; private createSandboxRequest; private getSandboxFeatures; private createSandbox; private initSandboxProcessData; private confirmSandboxReq; private validateFlags; }