import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AgentCallLimits } from "./AgentCallLimits"; import { AgentMetadataDbModel } from "./AgentMetadataDbModel"; import { AsrConversationalConfig } from "./AsrConversationalConfig"; import { BaseTurnConfig } from "./BaseTurnConfig"; import { ConversationConfigOutput } from "./ConversationConfigOutput"; import { PrivacyConfigOutput } from "./PrivacyConfigOutput"; import { SpeechEngineConfig } from "./SpeechEngineConfig"; import { TtsConversationalConfigOutput } from "./TtsConversationalConfigOutput"; export declare const SpeechEngineResponse: core.serialization.ObjectSchema; export declare namespace SpeechEngineResponse { interface Raw { speech_engine_id: string; name: string; speech_engine: SpeechEngineConfig.Raw; asr: AsrConversationalConfig.Raw; tts: TtsConversationalConfigOutput.Raw; turn: BaseTurnConfig.Raw; conversation: ConversationConfigOutput.Raw; privacy: PrivacyConfigOutput.Raw; call_limits: AgentCallLimits.Raw; language: string; tags: string[]; metadata: AgentMetadataDbModel.Raw; } }