import { Request, Response, NextFunction } from 'express';
/**
 * Middleware for logging JSON requests and responses.
 * This middleware logs the details of incoming requests and outgoing responses to the console.
 * It helps in monitoring and debugging API interactions.
 */
export declare const jsonRequestLogger: (request: Request, response: Response, next: NextFunction) => void;
//# sourceMappingURL=jsonRequestLogger.d.ts.map