//#region src/webhook/index.d.ts /** * 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; //#endregion export { verifyStandardWebhook }; //# sourceMappingURL=index.d.mts.map