import { ContextService } from '@/infrastructure/services/context/context.service'; import { CortexUsecases } from '@/usecases/cortex/cortex.usecases'; import { BaseCommand } from '../base.command'; export declare class EnginesListCommand extends BaseCommand { readonly contextService: ContextService; readonly cortexUseCases: CortexUsecases; constructor(contextService: ContextService, cortexUseCases: CortexUsecases); runCommand(): Promise; }