import { CustomCommand } from 'vtex'; export default class DepsUpdate extends CustomCommand { static description: string; static examples: string[]; static flags: { verbose: import("@oclif/parser/lib/flags").IBooleanFlag; help: import("@oclif/parser/lib/flags").IBooleanFlag; trace: import("@oclif/parser/lib/flags").IBooleanFlag; }; static strict: boolean; static args: ({ name: string; required: boolean; description: string; multiple?: undefined; } | { name: string; required: boolean; multiple: boolean; description: string; })[]; run(): Promise; }