import { BudgetData } from './budget.models.dto'; export declare class BudgetSimulatorCalculationInput { applicationId: string; /** */ areaId: number; /** */ studyTypeId: number; /** */ areaName: string; /** */ studyTypeName: string; /** */ studyStart: Date; /** */ studyEnd: Date; /** */ financingStart: Date; /** */ financingEnd: Date; /** */ budget: BudgetData; /** Número de cuotas */ instalmentNumber: number; /** TRM */ trm: number; /** Expectativa salarial */ salaryExpectation: number; /** salarial Check si el estudio lleva a doctorado */ studyLeadDoctoralDegree: boolean; /** Tasa de interés, ej: 0,07 => ("7%") */ interestRateStudy: number; /** Tasa de interés, ej: 0,09 => ("9%") */ interestRateAmortization: number; /** Interés seguro, ej: 0,003 => ("0,3%") */ insuranceInterest: number; /** Número total de pagos Cuota */ totalNumberPayment: number; /** Valores de interes de los bonos por año */ mapInterestBonus: any; /** */ decimalAmount: number; /** */ decimalInterestMonth: number; promCode: number; }