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