export interface CustomerProfileInfo { customerId: string; properties: Record; } export interface VisitorProfileInfo { visitorId: string; properties: Record; } export interface UserProfileInfo { userId: string; properties: Record; }