import type * as ElevenLabs from "../index"; export interface AlertingWebhookNotifier { type?: "webhook"; /** The URL to send alert lifecycle notifications to. */ url: string; /** HTTP method used when calling the webhook URL. */ method?: ElevenLabs.AlertingWebhookMethod; /** Custom request headers sent with every notification. Secret header values are encrypted at rest and never returned by the API. */ headers?: ElevenLabs.AlertingWebhookHeader[]; }