import { ExceptionConverter, type Dictionary, type DriverException } from '@mikro-orm/core'; /** Converts MongoDB native errors into typed MikroORM driver exceptions. */ export declare class MongoExceptionConverter extends ExceptionConverter { /** * @see https://gist.github.com/rluvaton/a97a8da46ab6541a3e5702e83b9d357b */ convertException(exception: Error & Dictionary): DriverException; }