import { OdsCommand } from '@salesforce/b2c-tooling-sdk/cli'; import { type OdsComponents } from '@salesforce/b2c-tooling-sdk'; type SystemInfoSpec = OdsComponents['schemas']['SystemInfoSpec']; type SystemInfoResponse = OdsComponents['schemas']['SystemInfoResponse']; /** * List inbound and outbound IP addresses for ODS sandboxes. */ export default class SandboxIps extends OdsCommand { static aliases: string[]; static description: string; static enableJsonFlag: boolean; static examples: string[]; static flags: { readonly realm: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; private printIps; } export {};