import { ObjectId } from 'mongoose'; export interface DefaultMongoModel { _id: ObjectId; createdAt: Date; updatedAt: Date; __v: number; }