import { type H3Event } from 'h3'; /** * Validates GitHub webhooks on the Edge * @see {@link https://docs.github.com/en/webhooks/using-webhooks/validating-webhook-deliveries#javascript-example} * @param event H3Event * @returns {boolean} `true` if the webhook is valid, `false` otherwise */ export declare const isValidGitHubWebhook: (event: H3Event) => Promise; /** * Alias for backwards compatibility * @deprecated Use `isValidGitHubWebhook` instead */ export declare const isValidGithubWebhook: (event: H3Event) => Promise;