import { ObjectId } from 'mongodb'; import { SerializableInterface } from '../serializer'; import { EntityInterface } from './interfaces'; export interface Entity extends SerializableInterface { } export declare abstract class Entity implements EntityInterface { _id: ObjectId; createdAt: Date; updatedAt?: Date; } //# sourceMappingURL=entity.d.ts.map