import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
export declare const WebhookHmacSettings: core.serialization.ObjectSchema<serializers.WebhookHmacSettings.Raw, ElevenLabs.WebhookHmacSettings>;
export declare namespace WebhookHmacSettings {
    interface Raw {
        auth_type: "hmac";
        name: string;
        webhook_url: string;
    }
}
