import { type H3Event } from 'h3'; /** * Validates GitLab webhooks on the Edge * @see {@link https://docs.gitlab.com/ee/user/project/integrations/webhooks.html} * @param event H3Event * @returns {boolean} `true` if the webhook is valid, `false` otherwise */ export declare const isValidGitLabWebhook: (event: H3Event) => Promise;