import { BaseCommand } from '../../base-command.js'; export default class DevicesCreate extends BaseCommand { static args: { name: import("@oclif/core/interfaces").Arg>; }; static description: string; static examples: string[]; static flags: { tag: import("@oclif/core/interfaces").OptionFlag; }; static summary: string; run(): Promise>; }