import type * as Extend from "../index"; /** * Advanced configuration options for the webhook endpoint, including custom headers and payload delivery settings. */ export interface WebhookAdvancedOptions { /** Custom HTTP headers to include in webhook requests. */ headers?: Record; payload?: Extend.WebhookPayloadOptions; }