import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { ExotelApiSubdomain } from "./ExotelApiSubdomain"; export declare const CreateExotelPhoneNumberRequest: core.serialization.ObjectSchema; export declare namespace CreateExotelPhoneNumberRequest { interface Raw { phone_number: string; label: string; supports_inbound?: boolean | null; supports_outbound?: boolean | null; account_sid: string; api_key: string; api_token: string; api_subdomain: ExotelApiSubdomain.Raw; app_id: string; applet_url?: string | null; } }