import { DebtPriority } from '../../core/constants/Debts'; import { DebtChartData } from '../../core/utils/DebtUtils'; type PayoffProjection = { payoffSavings: string; payoffDate: string; payoffDuration: string; }; export declare function getPayoffProjection(debts: DebtChartData[], debtPriority: DebtPriority, extraPaydown?: number): PayoffProjection; export {};