import * as React from 'react'; import { ClaimPositionType, CurrencyType } from 'types'; import { TagWithValueProps } from '..'; interface FollowPositionProps extends React.HTMLAttributes { position: ClaimPositionType; amount: number; name: string; avatarSrc: string; walletAddress: string; feesAccrued: number; currency?: CurrencyType; updatedAt?: string; tags?: TagWithValueProps[]; } declare const FollowPosition: ({ position, amount, currency, feesAccrued, name, walletAddress, avatarSrc, updatedAt, tags, ...props }: FollowPositionProps) => import("react/jsx-runtime").JSX.Element; export { FollowPosition };