import type * as ElevenLabs from "../index"; export interface AgentAlertingSettings { /** Alerting configuration keyed by monitor. */ monitorConfigs?: Record; /** How many minutes an alert can stay inactive before it is auto-resolved. */ autoResolveAfterInactiveMinutes?: number; /** Delivery channels for alert lifecycle notifications. Currently supports webhook notifiers. */ notifiers?: ElevenLabs.AgentAlertingWebhookNotifier[]; }