/** * Classification of the phone number type based on Telesign’s taxonomy. * Indicates the phone’s service category, such as mobile, fixed line, toll-free, or VOIP, * along with special types like prepaid, pager, or restricted premium. * The "INVALID" type denotes an unrecognized or improperly formatted number. */ export declare const DetailedPhoneNumberEnum: { readonly FixedLine: "FIXED_LINE"; readonly Invalid: "INVALID"; readonly Mobile: "MOBILE"; readonly Other: "OTHER"; readonly Pager: "PAGER"; readonly Payphone: "PAYPHONE"; readonly Personal: "PERSONAL"; readonly Prepaid: "PREPAID"; readonly RestrictedPremium: "RESTRICTED_PREMIUM"; readonly TollFree: "TOLL_FREE"; readonly Voicemail: "VOICEMAIL"; readonly Voip: "VOIP"; }; export type DetailedPhoneNumberEnum = (typeof DetailedPhoneNumberEnum)[keyof typeof DetailedPhoneNumberEnum];