import { NextFunction, Request, Response } from 'express'; export interface RequestIdConfig { header: string; idGenerator: () => string; setHeader: boolean; } export declare const RequestIdMiddleware: (config?: RequestIdConfig) => (req: Request, res: Response, next: NextFunction) => void;