import { Request, Response, NextFunction } from 'express'; type AsyncHandler = (req: Request, res: Response, next: NextFunction) => Promise; export declare function asyncHandler(handler: AsyncHandler): (req: Request, res: Response, next: NextFunction) => void; export {}; //# sourceMappingURL=asyncHandler.d.ts.map