import { SxProps } from '@mui/material'; import { FC, ReactNode } from 'react'; export type ProjectAvatarProfileInfo = { description?: string; memberCount?: number; appCount?: number; status?: string; organization?: string; createdAt?: string; onGoToOrg?: () => void; onGoToProject?: () => void; extra?: ReactNode; }; type Props = { projectId: string; title: string; hasThumbnail: boolean; cache?: string; sx?: SxProps; getProjectPictureUrl: (projectId: string) => string; showProfile?: boolean; profileInfo?: ProjectAvatarProfileInfo; onClick?: () => void; }; declare const ProjectAvatar: FC; export default ProjectAvatar;