/** * * `PERSONAL` - PERSONAL * * `WORK` - WORK * * `OTHER` - OTHER */ export declare const EmailAddressTypeEnum: { readonly Personal: "PERSONAL"; readonly Work: "WORK"; readonly Other: "OTHER"; }; export type EmailAddressTypeEnum = (typeof EmailAddressTypeEnum)[keyof typeof EmailAddressTypeEnum];