import { Command } from '@oclif/core';
export default class DeviceListCmd extends Command {
    static enableJsonFlag: boolean;
    static description: string;
    static examples: string[];
    static flags: {
        fleet: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
    };
    static primary: boolean;
    static authenticated: boolean;
    run(): Promise<string | undefined>;
}
