import type * as ElevenLabs from "../index"; export interface CreateTwilioPhoneNumberRequest { /** Phone number */ phoneNumber: string; /** Label for the phone number */ label: string; /** This field is deprecated and will be removed in the future. Whether this phone number supports inbound calls */ supportsInbound?: boolean; /** This field is deprecated and will be removed in the future. Whether this phone number supports outbound calls */ supportsOutbound?: boolean; /** Agent ID to assign the phone number to */ agentId?: string; /** Twilio Account SID */ sid: string; /** Twilio Auth Token */ token: string; /** Twilio Additional Region Configuration */ regionConfig?: ElevenLabs.RegionConfigRequest; /** Route inbound SMS to ElevenLabs. On by default; set to false to skip SMS configuration for numbers that don't support it. */ enableSms?: boolean; }