import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AlertingWebhookHeader } from "./AlertingWebhookHeader"; import { AlertingWebhookMethod } from "./AlertingWebhookMethod"; export declare const AlertingWebhookNotifier: core.serialization.ObjectSchema; export declare namespace AlertingWebhookNotifier { interface Raw { type?: "webhook" | null; url: string; method?: AlertingWebhookMethod.Raw | null; headers?: AlertingWebhookHeader.Raw[] | null; } }