import React, { HTMLAttributes } from 'react'; import { IdentityType } from 'types'; export interface ProfileCardProps extends HTMLAttributes { variant?: IdentityType; avatarSrc?: string; name: string; id?: string; vaultId?: string; stats?: { numberOfFollowers?: number; numberOfFollowing?: number; points?: number; }; ipfsLink?: string; externalLink?: string; bio?: string; children?: React.ReactNode; followingLink?: string; followerLink?: string; statsLink?: string; onAvatarClick?: () => void; } declare const ProfileCard: ({ variant, avatarSrc, name, id, vaultId, stats, ipfsLink, externalLink, bio, followingLink, followerLink, children, onAvatarClick, ...props }: ProfileCardProps) => import("react/jsx-runtime").JSX.Element; export { ProfileCard };