/** * reference: https://github.com/standard-webhooks/standard-webhooks/tree/main/libraries/javascript * hono usage: * ```ts * const webhook = verifyStandardWebhook(c.req.header(), await c.req.text(), 'secret'); * ``` */ declare function verifyStandardWebhook(headers: Record, payload: string, secret: string): T; export { verifyStandardWebhook };