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