/** * User profile information */ export interface UserProfile { /** * The ID of the user */ id: string; /** * The display name of the user */ displayName: string; /** * The email address of the user */ email: string; }