import { BaseCommand } from '@yarnpkg/cli'; import { Usage } from 'clipanion'; export default class ConfigCommand extends BaseCommand { static paths: string[][]; static usage: Usage; noDefaults: boolean; json: boolean; verbose: boolean | undefined; why: boolean | undefined; names: string[]; execute(): Promise<0 | 1>; }