import type { IEventData, IEventHandler, PgmbWebhookOpts, WebhookInfo } from './types.ts'; /** * Create a handler that sends events to a webhook URL via HTTP POST. * @param url Where to send the webhook requests */ export declare function createWebhookHandler({ timeoutMs, headers, retryOpts, jsonifier, serialiseEvent, minCompressSizeBytes, compress }: Partial>): IEventHandler>;