import { BaseCommand } from '@yarnpkg/cli'; import { Usage } from 'clipanion'; export default class ConfigSetCommand extends BaseCommand { static paths: string[][]; static usage: Usage; json: boolean; home: boolean; name: string; value: string; execute(): Promise<0 | 1>; }