import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { OpenAiAudioInputFormat } from "./OpenAiAudioInputFormat"; import { OpenAiTurnDetection } from "./OpenAiTurnDetection"; export declare const OpenAiAudioInputConfig: core.serialization.ObjectSchema; export declare namespace OpenAiAudioInputConfig { interface Raw { format?: OpenAiAudioInputFormat.Raw | null; turn_detection?: OpenAiTurnDetection.Raw | null; } }