import React from "react"; type FinanceMetricCardProps = { title: string; value: number | string; month?: number; year?: number; periodLabel?: string; color: string; icon: React.ReactNode; formatCurrency: (amount: number | string) => string; onClick?: () => void; }; declare const FinanceMetricCard: React.MemoExoticComponent<({ title, value, month, year, periodLabel, color, icon, formatCurrency, onClick, }: FinanceMetricCardProps) => React.JSX.Element>; export default FinanceMetricCard;