import BaseCommand from '../../base.command'; import { RemoveSourcesModule } from '../../modules/dbms-plugin/remove-sources.module'; export default class RemoveSourcesCommand extends BaseCommand { commandClass: typeof RemoveSourcesCommand; commandModule: typeof RemoveSourcesModule; static description: string; static aliases: string[]; static examples: string[]; static strict: boolean; static args: { sources: import("@oclif/core/lib/interfaces/parser").Arg>; }; static flags: { environment: import("@oclif/core/lib/interfaces").OptionFlag; }; }