import { BaseCommand } from '../../base/base-command'; export default class ConfigSet extends BaseCommand { static description: string; static examples: string[]; static args: ({ name: string; required: boolean; options: string[]; } | { name: string; required: boolean; options?: undefined; })[]; run(): Promise; }