import { BaseCommand } from '../../base-command.js'; export default class CommandsForDevice extends BaseCommand { static args: { deviceId: import("@oclif/core/interfaces").Arg>; }; static description: string; static examples: string[]; static summary: string; run(): Promise<{ items: unknown[]; }>; }