import { Collection, ObjectId, WithId } from 'mongodb'; export declare class MongoService { readonly collection: Collection; constructor(collection: Collection); findOne(query: Partial): Promise | null>; insertOne(doc: Omit): Promise>; updateOne(id: ObjectId, update: Partial): Promise | null>; deleteOne(id: ObjectId): Promise; }