import { Response, Request, NextFunction } from 'express'; export declare const handleNotFoundError: (req: Request, next: NextFunction) => void; declare const globalErrorHandler: (err: any, res: Response, env?: string) => void; export default globalErrorHandler;