import type * as ElevenLabs from "../index"; export interface BuiltInToolsOutput { /** The end call tool */ endCall?: ElevenLabs.SystemToolConfigOutput; /** The language detection tool */ languageDetection?: ElevenLabs.SystemToolConfigOutput; /** The transfer to agent tool */ transferToAgent?: 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; }