import { Model } from 'sequelize'; import { ILoanEmiModelAttributes } from '../../interfaces/loanEmiInterface'; import { TLoanEmiModelCreationAttributes } from '../../types/loanEmiType'; import { PAYOUT_STATUS } from '../../constants/app'; declare class LoanEmiModel extends Model { id: string; userLoanId: string; academicCalendarId: string; amount: number; paidAmount: number; dueDate: Date; paidDate: Date; status: PAYOUT_STATUS; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: Date; readonly updatedAt: Date; static associate(models: any): void; } export default LoanEmiModel;