/** * Classification of phone number types based on their billing and geographic properties.
* * Determines pricing structure and availability patterns. */ export declare const PhoneEnum: { readonly Local: "LOCAL"; readonly TollFree: "TOLL_FREE"; }; export type PhoneEnum = (typeof PhoneEnum)[keyof typeof PhoneEnum];