import * as React from 'react'; import { ClaimPositionType, CurrencyType } from 'types'; export interface ActivePositionCardProps extends React.HTMLAttributes { claimPosition?: ClaimPositionType | null; label?: string; value: number; currency?: CurrencyType; } declare const ActivePositionCard: ({ claimPosition, label, value, currency, ...props }: ActivePositionCardProps) => import("react/jsx-runtime").JSX.Element; export { ActivePositionCard };