import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
import { ConvAiWebhooks } from "./ConvAiWebhooks";
import { ConversationInitiationClientDataWebhook } from "./ConversationInitiationClientDataWebhook";
import { LivekitStackType } from "./LivekitStackType";
export declare const GetConvAiSettingsResponseModel: core.serialization.ObjectSchema<serializers.GetConvAiSettingsResponseModel.Raw, ElevenLabs.GetConvAiSettingsResponseModel>;
export declare namespace GetConvAiSettingsResponseModel {
    interface Raw {
        conversation_initiation_client_data_webhook?: ConversationInitiationClientDataWebhook.Raw | null;
        webhooks?: ConvAiWebhooks.Raw | null;
        can_use_mcp_servers?: boolean | null;
        rag_retention_period_days?: number | null;
        default_livekit_stack?: LivekitStackType.Raw | null;
    }
}
