import BaseCommand from '../../base.command'; import { UseModule } from '../../modules/environment/use.module'; export default class UseCommand extends BaseCommand { commandClass: typeof UseCommand; commandModule: typeof UseModule; static description: string; static examples: string[]; static aliases: string[]; static args: { environment: import("@oclif/core/lib/interfaces/parser").Arg>; }; }