import { Request, Response, NextFunction } from 'express';
export declare const errorHandlerV2: (err: Error, req: Request, res: Response, next: NextFunction) => {
status: boolean;
devCode: null;
statusCode: number;
msg: string;
errors: Error;
stack: string | undefined;
};