import React from 'react'; import { TagWithValueProps } from 'components/Tags'; import { CurrencyType, IdentityType } from 'types'; export interface IdentityRowProps extends React.HTMLAttributes { variant?: IdentityType; totalTVL: string; currency?: CurrencyType; id: string; name: string; description?: string; claimLink?: string; avatarSrc: string; link: string; ipfsLink: string; numPositions: number; tags?: TagWithValueProps[]; userPosition?: string; onStakeClick?: () => void; isFirst?: boolean; isLast?: boolean; isConnected?: boolean; } declare const IdentityRow: ({ variant, totalTVL, currency, id, name, description, avatarSrc, link, ipfsLink, numPositions, className, userPosition, onStakeClick, isFirst, isLast, isConnected, }: IdentityRowProps) => import("react/jsx-runtime").JSX.Element; export { IdentityRow };