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