import { BaseCommand } from '@yarnpkg/cli'; import { Usage } from 'clipanion'; export default class RunCommand extends BaseCommand { static paths: string[][]; static usage: Usage; inspect: string | boolean; inspectBrk: string | boolean; topLevel: boolean; binariesOnly: boolean; require: string | undefined; silent: boolean | undefined; scriptName: string; args: string[]; execute(): Promise; }