import { Request, Response, NextFunction } from "express"; /** * Simple error handler middleware * Logs the error and sends a generic response to the client */ export declare function errorHandler(err: any, req: Request, res: Response, next: NextFunction): void;