/** * Common keys used in counterparty data exchanges between VASPs. */ export declare const CounterPartyDataKeys: { /** The UMA address of the counterparty */ readonly IDENTIFIER: "identifier"; /** The full name of the counterparty */ readonly NAME: "name"; /** The email address of the counterparty */ readonly EMAIL: "email"; /** Compliance-related data including KYC status, UTXOs, and travel rule information */ readonly COMPLIANCE: "compliance"; /** The counterparty's date of birth, in ISO 8601 format */ readonly BIRTH_DATE: "birthDate"; /** The counterparty's nationality, in ISO 3166-1 alpha-2 format */ readonly NATIONALITY: "nationality"; /** The counterparty's country of residence, in ISO 3166-1 alpha-2 format */ readonly COUNTRY_OF_RESIDENCE: "countryOfResidence"; /** The counterparty's phone number, in E.164 format */ readonly PHONE_NUMBER: "phoneNumber"; }; export type CounterPartyDataKey = (typeof CounterPartyDataKeys)[keyof typeof CounterPartyDataKeys];