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