import { ClientSession } from "mongodb"; import { Database } from "../database"; export declare class MasterMind { /** * Master Mind Collection name */ collection: string; /** * Connection instance */ database: Database; /** * Get last id of the given collection */ getLastId(collection: string): Promise; /** * Get current active session from database object */ getCurrentSession(): ClientSession; /** * Generate next id for the given collection name */ generateNextId(collection: string, incrementIdBy?: number, initialId?: number, { session }?: { session?: ClientSession; }): Promise; } export declare const masterMind: MasterMind; //# sourceMappingURL=master-mind.d.ts.map