import type * as ElevenLabs from "../index"; /** * System tools a conversational agent can be given. * * Deliberately not named ConversationalBuiltInTools: BuiltInToolsInput and * BuiltInToolsOutput are part of the public API spec and the generated SDKs. */ export interface BuiltInToolsOutput { /** The transfer to agent tool */ transferToAgent?: ElevenLabs.SystemToolConfigOutput; /** The end call tool */ endCall?: ElevenLabs.SystemToolConfigOutput; /** The language detection tool */ languageDetection?: ElevenLabs.SystemToolConfigOutput; /** The transfer to number tool */ transferToNumber?: ElevenLabs.SystemToolConfigOutput; /** The skip turn tool */ skipTurn?: ElevenLabs.SystemToolConfigOutput; /** The play DTMF tool */ playKeypadTouchTone?: ElevenLabs.SystemToolConfigOutput; /** The voicemail detection tool */ voicemailDetection?: ElevenLabs.SystemToolConfigOutput; }