import { OdsCommand } from '@salesforce/b2c-tooling-sdk/cli'; import { type OdsComponents } from '@salesforce/b2c-tooling-sdk'; type SandboxSettings = OdsComponents['schemas']['SandboxSettings']; type SandboxSettingsResponse = OdsComponents['schemas']['SandboxSettingsResponse']; /** * Show sandbox settings. */ export default class SandboxSettingsCommand extends OdsCommand { static aliases: string[]; static args: { sandboxId: import("@oclif/core/interfaces").Arg>; }; static description: string; static enableJsonFlag: boolean; static examples: string[]; run(): Promise; private printSettings; } export {};