import { OdsCommand } from '@salesforce/b2c-tooling-sdk/cli'; import { type OdsComponents } from '@salesforce/b2c-tooling-sdk'; type RealmUsageModel = OdsComponents['schemas']['RealmUsageModel']; /** * Show realm-level usage information. */ export default class SandboxRealmUsage extends OdsCommand { static aliases: string[]; static args: { realm: import("@oclif/core/interfaces").Arg>; }; static description: string; static enableJsonFlag: boolean; static examples: string[]; static flags: { readonly from: import("@oclif/core/interfaces").OptionFlag; readonly to: import("@oclif/core/interfaces").OptionFlag; readonly granularity: import("@oclif/core/interfaces").OptionFlag; readonly 'detailed-report': import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; private printRealmUsageSummary; } export {};