export declare class BudgetSimulation { id: string; typeStudy: string; areaStudy: string; typeStudyId: number; areaStudyId: number; titleStudy: string; university: string; country: string; amount: number; condonationPercentage: number; studyInterestPercentage: number; paymentInterestPercentage: number; insuranceInterestPercentage: number; salary: number; installments: number; dues: number; trm: number; dateTrm: Date; dateLastBudgetUpdated: Date; duesToColombianPesos: number; salaryWaited: number; condonation: number; loanColfuturo: number; moneyDisbursed: number; insuranceInterest: number; studyInterest: number; paymentInterest: number; doctoralInterest: number; financingPeriodMonth: number; gracePeriodMonth: number; /** doctoral period */ extraPeriodMonth: number; totalDebt: number; colfuturoDebt: number; otherCondonations: Condonation; studyLeadDoctoralDegree: boolean; /** insurance values */ insurancePeriodMonth: number; insurancePeriodAmount: number; totalInsuranceAmount: number; } export declare class CondonationConcept { name: string; description: string; percentage: CondonationItem; amount: CondonationItem; } export declare class CondonationItem { total: number; yearly: number[]; } export declare class Condonation { concepts: CondonationConcept[]; columnsTotal: CondonationItem; }