import { LoggerService } from '../logger/logger.service.js'; import { InquirerService } from 'nest-commander'; import { MigrateusCommand } from '../migrateus.command.js'; import { ConfigService } from '../config/config.service.js'; import { RedactService } from '../redact/redact.service.js'; import { DependenciesService } from '../dependencies/dependencies.service.js'; import { ProgressService } from '../progress/progress.service.js'; import { ContainerService } from '../container/container.service.js'; import { UpdateService } from '../update/update.service.js'; import { RenameCollectionService } from './rename-collection.service.js'; export declare class RenameCollectionCommand extends MigrateusCommand { private readonly inquirer; private readonly renameCollectionService; protected readonly redactService: RedactService; protected readonly dependenciesService: DependenciesService; protected readonly progressService: ProgressService; protected readonly containerServices: ContainerService[]; protected readonly updateService: UpdateService; constructor(logger: LoggerService, config: ConfigService, inquirer: InquirerService, renameCollectionService: RenameCollectionService, redactService: RedactService, dependenciesService: DependenciesService, progressService: ProgressService, containerServices: ContainerService[], updateService: UpdateService); execute(params: string[]): Promise; }