import type { PaymentPlanObject, ResultsObject } from './types';
declare class Results implements ResultsObject {
    totalInterestPaid: number;
    totalPayments: number;
    strategy: string;
    payments: PaymentPlanObject[];
    constructor(data: PaymentPlanObject[], strategy: string);
    calculateTotalInterestPaid(): number;
}
export = Results;
