import type { H3Event } from 'h3'; /** * Validates Resend webhooks on the Edge * @see {@link https://resend.com/docs/dashboard/webhooks/verify-webhooks-requests} * @param event H3Event * @returns {boolean} `true` if the webhook is valid, `false` otherwise */ export declare const isValidResendWebhook: (event: H3Event) => Promise;