import { Command, Interfaces } from '@oclif/core'; export default class UpdateCommand extends Command { static args: { channel: Interfaces.Arg>; }; static description: string; static examples: { command: string; description: string; }[]; static flags: { autoupdate: Interfaces.BooleanFlag; available: Interfaces.BooleanFlag; force: Interfaces.BooleanFlag; interactive: Interfaces.BooleanFlag; verbose: Interfaces.BooleanFlag; version: Interfaces.OptionFlag; }; run(): Promise; }