import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
import { SystemToolConfigInput } from "./SystemToolConfigInput";
export declare const BuiltInToolsInput: core.serialization.ObjectSchema<serializers.BuiltInToolsInput.Raw, ElevenLabs.BuiltInToolsInput>;
export declare namespace BuiltInToolsInput {
    interface Raw {
        end_call?: SystemToolConfigInput.Raw | null;
        language_detection?: SystemToolConfigInput.Raw | null;
        transfer_to_agent?: SystemToolConfigInput.Raw | null;
        transfer_to_number?: SystemToolConfigInput.Raw | null;
        skip_turn?: SystemToolConfigInput.Raw | null;
        play_keypad_touch_tone?: SystemToolConfigInput.Raw | null;
        voicemail_detection?: SystemToolConfigInput.Raw | null;
    }
}
