import { CommandContext } from '@yarnpkg/core'; import { Command } from 'clipanion'; export declare abstract class BaseCommand extends Command { cwd: string | undefined; abstract execute(): Promise; validateAndExecute(): Promise; }