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 { MigrateDataService } from './migrate-data.service.js'; export declare class MigrateDataCommand extends MigrateusCommand { private readonly inquirer; protected readonly redactService: RedactService; private readonly migrateDataService; protected readonly dependenciesService: DependenciesService; protected readonly progressService: ProgressService; protected readonly containerServices: ContainerService[]; protected readonly updateService: UpdateService; constructor(logger: LoggerService, config: ConfigService, inquirer: InquirerService, redactService: RedactService, migrateDataService: MigrateDataService, dependenciesService: DependenciesService, progressService: ProgressService, containerServices: ContainerService[], updateService: UpdateService); execute(params: string[]): Promise; }