import { type AvatarProps } from '@atlaskit/avatar-group'; import { type TeamActionsProps } from './team-actions'; export type TeamProfileCardProps = { containerId: string; teamId: string; displayName: string; description: string; avatarImageUrl: string; headerImageUrl: string; memberAvatars: AvatarProps[]; memberCount: number | string; cloudId: string; userId: string; isVerified?: boolean; teamProfileUrl?: string; } & TeamActionsProps; export declare const TeamProfileCard: ({ containerId, teamId, displayName, description, avatarImageUrl, headerImageUrl, memberAvatars, memberCount, cloudId, userId, isVerified, teamProfileUrl, ...props }: TeamProfileCardProps) => JSX.Element;