export interface AgentAlertingWebhookNotifier { type?: "webhook"; /** The URL to send alert lifecycle notifications to. */ url: string; /** Optional static request headers sent with each alert webhook call, for example to authenticate with the receiving endpoint. */ requestHeaders?: Record; }