/** * * `HOME` - HOME * * `WORK` - WORK * * `MOBILE` - MOBILE * * `SKYPE` - SKYPE * * `OTHER` - OTHER */ export declare const PhoneNumberTypeEnum: { readonly Home: "HOME"; readonly Work: "WORK"; readonly Mobile: "MOBILE"; readonly Skype: "SKYPE"; readonly Other: "OTHER"; }; export type PhoneNumberTypeEnum = (typeof PhoneNumberTypeEnum)[keyof typeof PhoneNumberTypeEnum];