import { ObjectId } from 'mongodb'; export interface GenericModel { _id: ObjectId; [other: string]: any; }