import type { Dictionary } from '../typings.js';
import { DriverException } from '../exceptions.js';
/** Converts native database errors into standardized DriverException instances. */
export declare class ExceptionConverter {
    convertException(exception: Error & Dictionary): DriverException;
}
