import { SxProps } from '@mui/material'; import { FC, ReactNode } from 'react'; export type OrganizationAvatarProfileInfo = { createdAt?: string; projectCount?: number; memberCount?: number; integrations?: string[]; extra?: ReactNode; }; type Props = { orgId: string; name: string; hasThumbnail: boolean; hasBanner?: boolean; cache?: string; sx?: SxProps; getLogoUrl: (orgId: string) => string; getBannerUrl?: (orgId: string) => string; showProfile?: boolean; profileInfo?: OrganizationAvatarProfileInfo; onClick?: () => void; }; declare const OrganizationAvatar: FC; export default OrganizationAvatar;