import { ModelInfo } from '@/domain/models/model.interface'; import { ModelRuntimeParamsDto } from '@/infrastructure/dtos/models/model-runtime-params.dto'; import { ModelSettingParamsDto } from '@/infrastructure/dtos/models/model-setting-params.dto'; export declare class CreateThreadModelInfoDto implements ModelInfo { id: string; settings: ModelSettingParamsDto; parameters: ModelRuntimeParamsDto; engine?: string; }