import type * as ElevenLabs from "../index";
/**
 * A webhook tool is a tool that calls an external webhook from our server
 */
export interface WebhookToolConfigInput {
    name: string;
    /** Description of when the tool should be used and what it does. */
    description: string;
    /** The maximum time in seconds to wait for the tool call to complete. Must be between 5 and 120 seconds (inclusive). */
    responseTimeoutSecs?: number;
    /** If true, the user will not be able to interrupt the agent while this tool is running. */
    disableInterruptions?: boolean;
    /** If true, the agent will speak before the tool call. */
    forcePreToolSpeech?: boolean;
    /** Configuration for extracting values from tool responses and assigning them to dynamic variables */
    assignments?: ElevenLabs.DynamicVariableAssignment[];
    /** Predefined tool call sound type to play during tool execution. If not specified, no tool call sound will be played. */
    toolCallSound?: ElevenLabs.ToolCallSoundType;
    /** Determines when the tool call sound should play. 'auto' only plays when there's pre-tool speech, 'always' plays for every tool call. */
    toolCallSoundBehavior?: ElevenLabs.ToolCallSoundBehavior;
    /** Controls how tool errors are processed before being shared with the agent. 'auto' determines handling based on tool type (summarized for native integrations, hide for others), 'summarized' sends an LLM-generated summary, 'passthrough' sends the raw error, 'hide' does not share the error with the agent. */
    toolErrorHandlingMode?: ElevenLabs.ToolErrorHandlingMode;
    /** Configuration for dynamic variables */
    dynamicVariables?: ElevenLabs.DynamicVariablesConfig;
    /** Determines when and how the tool executes: 'immediate' executes the tool right away when requested by the LLM, 'post_tool_speech' waits for the agent to finish speaking before executing, 'async' runs the tool in the background without blocking - best for long-running operations. */
    executionMode?: ElevenLabs.ToolExecutionMode;
    /** The schema for the outgoing webhoook, including parameters and URL specification */
    apiSchema: ElevenLabs.WebhookToolApiSchemaConfigInput;
}
