/** * Формулы расчёта аннуитетных и дифференцированных платежей: * https://finuslugi.ru/potrebitelskie_kredity/stat_annuitetnye_i_differentsirovannye_platezhi */ import { type CalcValueProps } from './CalculatorProps'; interface GetMonthlyPaymentParams extends CalcValueProps { isAnnuity: boolean; moneyExtra?: number; } export declare const getMonthlyPayment: (rate: number, params: GetMonthlyPaymentParams) => number; export {};