import * as React from 'react'; import { CurrencyType, IdentityType } from 'types'; import { TagWithValueProps } from '..'; export interface IdentityPositionProps extends React.HTMLAttributes { variant?: IdentityType; amount: number; currency?: CurrencyType; feesAccrued: number; name: string; description: string; id: string; avatarSrc: string; link: string; ipfsLink: string; updatedAt?: string; tags?: TagWithValueProps[]; } declare const IdentityPosition: ({ variant, amount, currency, feesAccrued, name, description, id, avatarSrc, link, ipfsLink, updatedAt, tags, className, ...props }: IdentityPositionProps) => import("react/jsx-runtime").JSX.Element; export { IdentityPosition };