import { type H3Event } from 'h3'; /** * Validates Hygraph webhooks on the Edge * @see {@link https://hygraph.com/docs/api-reference/basics/webhooks#manual-verification} * @param event H3Event * @returns {boolean} `true` if the webhook is valid, `false` otherwise */ export declare const isValidHygraphWebhook: (event: H3Event) => Promise;