import type { MongoClient } from 'mongodb'; import { MongoOptions, Connection } from './types.js'; export default function connect(Client: typeof MongoClient, options: MongoOptions, emit: (eventType: string, ...args: unknown[]) => void, auth?: Record | null, connection?: Connection | null): Promise;