import { Transaction } from '../types'; import { SpendingFeeTransaction, MonthlyHealthScoreItem } from '../../core/types/Finstrong'; export declare const augmentChartData: (averageHealthScores: MonthlyHealthScoreItem[]) => { x: string; y: number; }[]; export declare const augmentSpendingFeeTransactions: (spendingFeeTransactions: SpendingFeeTransaction[]) => Transaction[];