import { OdsCommand } from '@salesforce/b2c-tooling-sdk/cli'; import { type OdsComponents } from '@salesforce/b2c-tooling-sdk'; type SandboxCloneGetModel = OdsComponents['schemas']['SandboxCloneGetModel']; /** * Command to get details of a specific sandbox clone. */ export default class CloneGet extends OdsCommand { static aliases: string[]; static args: { sandboxId: import("@oclif/core/interfaces").Arg>; cloneId: import("@oclif/core/interfaces").Arg>; }; static description: string; static enableJsonFlag: boolean; static examples: string[]; run(): Promise<{ data?: SandboxCloneGetModel; }>; private buildCloneFields; private printCloneDetails; } export {};