import { CustomCommand } from 'vtex'; export default class DepsDiff 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 args: { name: string; required: boolean; default: string; description: string; }[]; run(): Promise; }