import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Eagerness } from "./Eagerness"; import { TurnDetectionType } from "./TurnDetectionType"; export declare const OpenAiTurnDetection: core.serialization.ObjectSchema; export declare namespace OpenAiTurnDetection { interface Raw { type?: TurnDetectionType.Raw | null; eagerness?: Eagerness.Raw | null; create_response?: boolean | null; interrupt_response?: boolean | null; threshold?: number | null; prefix_padding_ms?: number | null; silence_duration_ms?: number | null; } }