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;
    /** Twilio Account SID */
    sid: string;
    /** Twilio Auth Token */
    token: string;
    /** Twilio Additional Region Configuration */
    regionConfig?: ElevenLabs.RegionConfigRequest;
}
