import { BaseCommand } from '../../base/base-command'; export default class ModuleRemoveCommand extends BaseCommand { static description: string; static strict: boolean; static args: { name: string; description: string; required: boolean; }[]; static flags: { dir: import("@oclif/command/lib/flags").IOptionFlag; }; run(): Promise; }