import { LoggerService } from '../../logger/logger.service.js'; import { ContainerService } from '../container.service.js'; import { DockerService } from '../../docker/docker.service.js'; export declare class DockerContainerService extends ContainerService { protected readonly logger: LoggerService; private readonly dockerService; migrateusContainerId: string; mount: string; constructor(logger: LoggerService, dockerService: DockerService); setup(): Promise; cleanUp(): Promise; cleanUpAll(): Promise; execute(command: string): Promise; execInDirectus(command: string): Promise; private removeContainer; exfilFile(source: string, destination: string): Promise; infilFile(source: string, destination: string): Promise; copyFromDirectus(remotePath: string, localPath: string): Promise; copyToDirectus(localPath: string, remotePath: string): Promise; }