import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
import { ConversationConfigClientOverrideInput } from "./ConversationConfigClientOverrideInput";
import { LanguagePresetTranslation } from "./LanguagePresetTranslation";
export declare const LanguagePresetInput: core.serialization.ObjectSchema<serializers.LanguagePresetInput.Raw, ElevenLabs.LanguagePresetInput>;
export declare namespace LanguagePresetInput {
    interface Raw {
        overrides: ConversationConfigClientOverrideInput.Raw;
        first_message_translation?: LanguagePresetTranslation.Raw | null;
        soft_timeout_translation?: LanguagePresetTranslation.Raw | null;
    }
}
