import { ContextService } from '@/infrastructure/services/context/context.service'; import { CortexUsecases } from '@/usecases/cortex/cortex.usecases'; import { BaseCommand } from '../base.command'; import { InitEngineDto } from '@/infrastructure/dtos/engines/engines.dto'; export declare class EnginesInitCommand extends BaseCommand { private readonly cortexUsecases; readonly contextService: ContextService; constructor(cortexUsecases: CortexUsecases, contextService: ContextService); runCommand(passedParams: string[], options: InitEngineDto): Promise; }