/**
 * 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<T = unknown>(headers: Record<string, string>, payload: string, secret: string): T;

export { verifyStandardWebhook };
