import { Model, ModelArtifact, ModelFormat, ModelMetadata, ModelRuntimeParams, ModelSettingParams } from '@/domain/models/model.interface'; export declare class ModelEntity implements Model { id: string; object: string; version: string; format: ModelFormat; sources: ModelArtifact[]; name: string; created: number; description: string; settings: ModelSettingParams; parameters: ModelRuntimeParams; metadata: ModelMetadata; engine: string; }