import { MongoClient, TransactionOptions } from "mongodb"; import { MongoDatabase, Schema, SchemaToShape } from "../types.js"; export declare function mongo({ dbName, client, shape, transactionOptions, makeTableName, }: { dbName: string; client: MongoClient; shape: SchemaToShape; transactionOptions?: TransactionOptions; makeTableName?: (path: string[]) => string; }): MongoDatabase;