import { OdsCommand } from '@salesforce/b2c-tooling-sdk/cli'; import { type OdsComponents } from '@salesforce/b2c-tooling-sdk'; type RealmConfigurationModel = OdsComponents['schemas']['RealmConfigurationModel']; type RealmConfigurationResponse = OdsComponents['schemas']['RealmConfigurationResponse']; /** * Get realm sandbox configuration. */ export default class SandboxRealmConfiguration extends OdsCommand { static aliases: string[]; static args: { realm: import("@oclif/core/interfaces").Arg>; }; static description: string; static enableJsonFlag: boolean; static examples: string[]; run(): Promise; private printConfiguration; } export {};