import { Command } from '@oclif/core';
export default class DeviceIdentifyCmd extends Command {
    static description: string;
    static examples: string[];
    static args: {
        uuid: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
    };
    static authenticated: boolean;
    run(): Promise<void>;
}
