import { CortexOperationSuccessfullyDto } from '@/infrastructure/dtos/cortex/cortex-operation-successfully.dto'; import { HttpService } from '@nestjs/axios'; export declare class CortexUsecases { private readonly httpService; private cortexProcess; constructor(httpService: HttpService); startCortex(host: string, port: string): Promise; stopCortex(host?: string, port?: number): Promise; private registerCortexEvents; private unregisterCortexEvent; }