import { type H3Event } from 'h3'; /** * Validates Docusign webhooks on the Edge * @see {@link https://developers.docusign.com/platform/webhooks/connect/validate} * @param event H3Event * @returns {boolean} `true` if the webhook is valid, `false` otherwise */ export declare const isValidDocusignWebhook: (event: H3Event) => Promise;