import { MongoDBClient } from './db.js'; /** * Direct MongoDB client singleton * Use this to directly access MongoDB collections using dot notation * * Example: * ```ts * import { db } from 'mongo-adonis' * * // Now you can directly access collections * const users = await db.users.find({}).toArray() * ``` * * Note: The MongoDB client must be initialized before using this export. * This is typically done by the Adonis service provider during application boot. */ export declare const db: MongoDBClient;