import * as React from 'react'; import { CurrencyType, IdentityType } from 'types'; export interface IdentityCardProps extends React.HTMLAttributes { variant?: IdentityType; avatarSrc?: string; name: string; value: number; currency?: CurrencyType; walletAddress: string; } declare const IdentityCard: ({ variant, avatarSrc, name, value, currency, walletAddress, ...props }: IdentityCardProps) => import("react/jsx-runtime").JSX.Element; export { IdentityCard };