import { Command } from '@oclif/command'; export default class DevUpdate extends Command { static description: string; static aliases: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: { name: string; }[]; run(): Promise; }