interface BodyContent { amount: string; icon: React.ReactNode; primaryText: string; secondaryText: string; } interface TransactionCardProps { bodyContent: BodyContent[]; footerLeftText?: string; footerRightText?: string; headerText?: string; } declare const TransactionCard: ({ bodyContent, footerLeftText, footerRightText, headerText, }: TransactionCardProps) => import("react/jsx-runtime").JSX.Element; export default TransactionCard;