import { type H3Event } from 'h3'; /** * Validates Paddle webhooks on the Edge * @see {@link https://github.com/PaddleHQ/paddle-node-sdk/blob/main/src/notifications/helpers/webhooks-validator.ts} * @param event H3Event * @returns {boolean} `true` if the webhook is valid, `false` otherwise */ export declare const isValidPaddleWebhook: (event: H3Event) => Promise;