import { Middleware, Request, Response, NextFunction } from '../base/http'; declare class InternalServerErrorHandler extends Middleware { protected order: number; protected route: null; protected action: (err: Error, req: Request, res: Response, next: NextFunction) => any; } export default InternalServerErrorHandler;