import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
import { DynamicVariableAssignment } from "./DynamicVariableAssignment";
import { SystemToolConfigOutputParams } from "./SystemToolConfigOutputParams";
import { ToolCallSoundBehavior } from "./ToolCallSoundBehavior";
import { ToolCallSoundType } from "./ToolCallSoundType";
import { ToolErrorHandlingMode } from "./ToolErrorHandlingMode";
export declare const SystemToolConfigOutput: core.serialization.ObjectSchema<serializers.SystemToolConfigOutput.Raw, ElevenLabs.SystemToolConfigOutput>;
export declare namespace SystemToolConfigOutput {
    interface Raw {
        type?: "system" | null;
        name: string;
        description?: string | null;
        response_timeout_secs?: number | null;
        disable_interruptions?: boolean | null;
        force_pre_tool_speech?: boolean | null;
        assignments?: DynamicVariableAssignment.Raw[] | null;
        tool_call_sound?: ToolCallSoundType.Raw | null;
        tool_call_sound_behavior?: ToolCallSoundBehavior.Raw | null;
        tool_error_handling_mode?: ToolErrorHandlingMode.Raw | null;
        params: SystemToolConfigOutputParams.Raw;
    }
}
