import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AlertingIntegrationNotifier } from "./AlertingIntegrationNotifier"; import { AlertingWebhookNotifier } from "./AlertingWebhookNotifier"; export declare const AlertingSettingsNotifiersItem: core.serialization.Schema; export declare namespace AlertingSettingsNotifiersItem { type Raw = AlertingSettingsNotifiersItem.Integration | AlertingSettingsNotifiersItem.Webhook; interface Integration extends AlertingIntegrationNotifier.Raw { type: "integration"; } interface Webhook extends AlertingWebhookNotifier.Raw { type: "webhook"; } }