/** * Communication features and capabilities supported by a phone number.
* * These features determine what types of communication the number can handle. */ export declare const PhoneFeatureEnum: { readonly Sms: "SMS"; readonly Mms: "MMS"; readonly Voice: "VOICE"; readonly Fax: "FAX"; readonly Emergency: "EMERGENCY"; readonly HdVoice: "HD_VOICE"; readonly InternationalSms: "INTERNATIONAL_SMS"; readonly LocalCalling: "LOCAL_CALLING"; }; export type PhoneFeatureEnum = (typeof PhoneFeatureEnum)[keyof typeof PhoneFeatureEnum];