import { OdsCommand } from '@salesforce/b2c-tooling-sdk/cli'; import { type OdsComponents } from '@salesforce/b2c-tooling-sdk'; type RealmConfigurationModel = OdsComponents['schemas']['RealmConfigurationModel']; type RealmModel = OdsComponents['schemas']['RealmModel']; /** * Get details of a specific realm. */ export default class SandboxRealmGet extends OdsCommand { static aliases: string[]; static args: { realm: import("@oclif/core/interfaces").Arg>; }; static description: string; static enableJsonFlag: boolean; static examples: string[]; static flags: {}; run(): Promise<{ realm: RealmModel; configuration?: RealmConfigurationModel; }>; private addFieldRows; private printRealmDetails; } export {};