import type { NextFunction, Request, Response } from 'express-serve-static-core'; import type { ExpressError } from '../../Model/index.ts'; /** * Express error handler that logs the error and sends a JSON:API-compliant error response. * @param err The error to handle, or undefined if no error. * @param req The incoming request. * @param res The outgoing response. * @param next The next middleware function. */ export declare const standardErrors: (err: ExpressError | undefined, req: Request, res: Response, next: NextFunction) => void; //# sourceMappingURL=standardErrors.d.ts.map