import type { Db } from 'mongodb'; export interface CreateMongoClientOptions { readonly options: object; readonly url: string; } declare const createMongoClient: ({ options, url, }: CreateMongoClientOptions) => Promise; export default createMongoClient;