import { Command } from '@oclif/command'; export default class ConfigSet extends Command { static description: string; static aliases: string[]; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: ({ name: string; required: boolean; description: string; options: string[]; } | { name: string; required: boolean; description: string; options?: undefined; })[]; run(): Promise; }