interface TrendsMicroSpendingIncomeBoxProps { title: string; totalAmount: number; transactionType: 'spending' | 'income'; percentage: number; secondaryLabel: string; shouldDisplayPercentage: boolean; } export declare const TrendsMicroSpendingIncomeBox: ({ title, totalAmount, transactionType, percentage, secondaryLabel, shouldDisplayPercentage, }: TrendsMicroSpendingIncomeBoxProps) => import("react/jsx-runtime").JSX.Element; export {};