import { type H3Event } from 'h3'; /** * Validates Twitch webhooks on the Edge * @see {@link https://dev.twitch.tv/docs/eventsub/handling-webhook-events/#verifying-the-event-message} * @param event H3Event * @returns {boolean} `true` if the webhook is valid, `false` otherwise */ export declare const isValidTwitchWebhook: (event: H3Event) => Promise;