import { CortexOperationSuccessfullyDto } from '@/infrastructure/dtos/cortex/cortex-operation-successfully.dto'; import { HttpService } from '@nestjs/axios'; import { FileManagerService } from '@/file-manager/file-manager.service'; export declare class CortexUsecases { private readonly httpService; private readonly fileManagerService; private cortexProcess; private cortexBinaryName; constructor(httpService: HttpService, fileManagerService: FileManagerService); startCortex(attach?: boolean, host?: string, port?: number): Promise; stopCortex(host?: string, port?: number): Promise; private healthCheck; }