/** * User profile information */ export interface UserProfile { username: string; userId: string; joined: string; bioHtml: string | null; }