import { type H3Event } from 'h3'; /** * Validates Vercel webhooks on the Edge * @see {@link https://vercel.com/docs/webhooks/webhooks-api#securing-webhooks} * @param event H3Event * @returns {boolean} `true` if the webhook is valid, `false` otherwise */ export declare const isValidVercelWebhook: (event: H3Event) => Promise;