import { type H3Event } from 'h3'; /** * Validates Meta webhooks on the Edge * @see {@link https://developers.facebook.com/docs/messenger-platform/webhooks#validate-payloads} * @param event H3Event * @returns {boolean} `true` if the webhook is valid, `false` otherwise */ export declare const isValidMetaWebhook: (event: H3Event) => Promise;