import { OdsCommand } from '@salesforce/b2c-tooling-sdk/cli'; import { type OdsComponents } from '@salesforce/b2c-tooling-sdk'; type SandboxModel = OdsComponents['schemas']['SandboxModel']; /** * Command to update an on-demand sandbox. */ export default class SandboxUpdate extends OdsCommand { static aliases: string[]; static args: { sandboxId: import("@oclif/core/interfaces").Arg>; }; static description: string; static enableJsonFlag: boolean; static examples: string[]; static flags: { ttl: import("@oclif/core/interfaces").OptionFlag; 'auto-scheduled': import("@oclif/core/interfaces").BooleanFlag; 'resource-profile': import("@oclif/core/interfaces").OptionFlag; tags: import("@oclif/core/interfaces").OptionFlag; emails: import("@oclif/core/interfaces").OptionFlag; 'start-scheduler': import("@oclif/core/interfaces").OptionFlag; 'clear-start-scheduler': import("@oclif/core/interfaces").BooleanFlag; 'stop-scheduler': import("@oclif/core/interfaces").OptionFlag; 'clear-stop-scheduler': import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; private printSandboxSummary; } export {};