import * as React from 'react'; import { IdentityType } from 'types'; export interface InfoCardProps extends React.HTMLAttributes { variant: IdentityType; username: string; avatarImgSrc: string; id: string; description: string; link: string; ipfsLink: string; timestamp: string; } declare const InfoCard: ({ variant, username, avatarImgSrc, id, description, link, ipfsLink, timestamp, className, ...props }: InfoCardProps) => import("react/jsx-runtime").JSX.Element; export { InfoCard };