import { NextFunction, Request, Response } from "express"; /** * Uses the connection's signing key to verify the webhook signature. * Calls next() or returns 401 if signatures do not match. **/ declare const _default: (req: Request, res: Response, next: NextFunction) => Response> | undefined; export default _default;