import { InfraError } from './InfraError';
export declare class DatabaseError extends InfraError {
readonly engine: string;
readonly engineErrorCode: string | number;
constructor(message: string, code: string, engine: 'postgres' | 'mysql', engineErrorCode: string | number);
}