import { type H3Event } from 'h3'; /** * Validates Bitbucket webhooks on the Edge * @see {@link https://support.atlassian.com/bitbucket-cloud/docs/manage-webhooks/#Validating-webhook-deliveries} * @param event H3Event * @returns {boolean} `true` if the webhook is valid, `false` otherwise */ export declare const isValidBitbucketWebhook: (event: H3Event) => Promise;