/// import { IdentityTagSize } from 'components/IdentityTag'; import { IdentityType } from 'types'; interface ClaimItemProps { variant?: IdentityType; label: string; imgSrc?: string | null; id?: string | number | null; description?: string | null; ipfsLink?: string; link?: string; shouldHover?: boolean; linkComponent?: React.ComponentType<{ href: string; onClick: (e: React.MouseEvent) => void; children: React.ReactNode; }>; } export interface ClaimProps { size?: keyof typeof IdentityTagSize; disabled?: boolean; subject: ClaimItemProps; predicate: ClaimItemProps; object: ClaimItemProps; orientation?: 'horizontal' | 'vertical'; isClickable?: boolean; maxIdentityLength?: number; shouldHover?: boolean; linkComponent?: React.ComponentType<{ href: string; onClick: (e: React.MouseEvent) => void; children: React.ReactNode; }>; className?: string; } export declare const Claim: ({ subject, predicate, object, orientation, disabled, size, isClickable, maxIdentityLength, shouldHover, className, }: ClaimProps) => import("react/jsx-runtime").JSX.Element; export {};