/**
 * Enrich the identity of a data subject. i.e. map an email address to a username
 *
 * @returns User identifiers
 */
export declare function enrichUser(): {
    /** email */ email: {
        /** Value of the email */
        value: string;
    }[];
    /** phone */
    phone: {
        /** country code of the phone */
        countryCode: string;
        /** value of the phone */
        value: string;
    }[];
};
//# sourceMappingURL=enrichUser.d.ts.map