import { BaseCommand } from '@yarnpkg/cli'; import { Usage } from 'clipanion'; export default class DlxCommand extends BaseCommand { static paths: string[][]; static usage: Usage; packages: string[] | undefined; quiet: boolean; command: string; args: string[]; execute(): Promise; }