export interface UserInfo { did: string; name: string; publicEncKey: string; registered: boolean; profileImageUrl?: string; nextPublicEncKeyHash?: string; } export interface MemberData { did: string; name: string; isContact: boolean; member: { memberId: string; }; }