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 { CleanService } from './clean.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'; export declare class CleanCommand extends MigrateusCommand { private readonly inquirer; private readonly cleanService; protected readonly redactService: RedactService; protected readonly dependenciesService: DependenciesService; protected readonly progressService: ProgressService; protected readonly containerServices: ContainerService[]; protected readonly updateService: UpdateService; private readonly configService; constructor(logger: LoggerService, config: ConfigService, inquirer: InquirerService, cleanService: CleanService, redactService: RedactService, dependenciesService: DependenciesService, progressService: ProgressService, containerServices: ContainerService[], updateService: UpdateService, configService: ConfigService); execute(params: string[]): Promise; private cleanEnvironment; }