import React from 'react'; import './UserProfile.css'; type UserProfileProps = { orgName: string; list: ListType; type: AvatarType; avatar: AvatarData; handleEvent: (e: any) => void; testId?: string; closeModal?: (e: any) => void; orgBannerImageUrl?: string | undefined; onImageSelect?: (e: any) => void; isOwner?: boolean; appendOrgBannerCover?: any; }; type ListItem = { icon?: string; text?: string; toggle?: ToggleData; iconVersion?: string; id: string; dropdown?: boolean; orgData?: OrgData[]; }; type OrgData = { label: React.JSX.Element; value: string; action: () => void; }; type ListType = ListItem[]; type AvatarType = 'text' | 'image'; type AvatarData = { image?: string; name: string; email: string; }; type ToggleData = { checked: boolean; }; declare const UserProfile: React.ForwardRefExoticComponent>; export default UserProfile;