import { Response, NextFunction } from "express"; export declare const notFoundError: () => never; export declare const clientError: (err: Error, res: Response, next: NextFunction) => void; export declare const serverError: (err: Error, res: Response, next: NextFunction) => void;