import { Command } from '@oclif/core'; export default class DeviceDeactivateCmd extends Command { static description: string; static examples: string[]; static args: { uuid: import("@oclif/core/lib/interfaces").Arg>; }; static flags: { yes: import("@oclif/core/lib/interfaces").BooleanFlag; }; static authenticated: boolean; run(): Promise; }