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