import { ContextService } from '@/infrastructure/services/context/context.service'; import { BaseCommand } from '../base.command'; import { CortexUsecases } from '@/usecases/cortex/cortex.usecases'; type UpdateOptions = { model?: string; options?: string[]; }; export declare class ModelUpdateCommand extends BaseCommand { readonly contextService: ContextService; readonly cortexUseCases: CortexUsecases; constructor(contextService: ContextService, cortexUseCases: CortexUsecases); runCommand(passedParams: string[], option: UpdateOptions): Promise; parseModelId(value: string): string; parseOptions(option: string, optionsAccumulator?: string[]): string[]; } export {};