import { ModelStatus } from '../domain/enum/model-status.enum'; export declare abstract class ModelEntityBase { id: string; name: string; fileName: string; status: ModelStatus; fileSize: number; dimension_width: number | null; dimension_height: number | null; dimension_depth: number | null; ownerId: string; libraryId: string; createdAt: Date; updatedAt: Date; } //# sourceMappingURL=model.entity.base.d.ts.map