import { CustomError } from './custom-error'; /** * Indicates that the server encountered an unexpected condition that * prevented it from fulfilling the request */ export declare class DatabaseConnectionError extends CustomError { statusCode: number; reason: string; constructor(); serializeErrors(): { message: string; }[]; }