import { Command } from '@oclif/core'; import type { BalenaSDK } from 'balena-sdk'; export default class DeviceMoveCmd extends Command { static description: string; static examples: string[]; static args: { uuid: import("@oclif/core/lib/interfaces").Arg>; }; static flags: { fleet: import("@oclif/core/lib/interfaces").OptionFlag; }; static authenticated: boolean; private getDevices; run(): Promise; interactivelySelectApplication(balena: BalenaSDK, devices: Awaited>): ReturnType; }