import { Request, Response, NextFunction } from 'express';
export interface ErrorResponse {
    statusCode: number;
    message: string;
    errorCode: string;
    timestamp: string;
    path: string;
}
export declare const errorHandler: (error: Error, req: Request, res: Response, _next: NextFunction) => void;
//# sourceMappingURL=errorHandler.d.ts.map