import type { CountryAddress } from '../../../types/common/address.types.js'; export type CountryDetails = { countryCode: CountryAddress['alpha2Code']; countryCallingCode?: string; }; export declare enum UserContactType { Phone = "Phone" } export type UserContact = { id: string; value: string; countryDetails?: CountryDetails; type: UserContactType; description?: string; externalId?: string; }; export type UserContactRequest = Omit;