import BaseCommand from '../../base.command'; import { OpenModule } from '../../modules/dbms/open.module'; export default class OpenCommand extends BaseCommand { commandClass: typeof OpenCommand; commandModule: typeof OpenModule; static description: string; static examples: string[]; static args: { dbms: import("@oclif/core/lib/interfaces/parser").Arg>; }; static flags: { log: import("@oclif/core/lib/interfaces").BooleanFlag; environment: import("@oclif/core/lib/interfaces").OptionFlag; }; }