import { Model } from 'sequelize'; import { IUserLoanModelAttributes } from '../../interfaces/userLoanInterface'; import { TUserLoanModelCreationAttributes } from '../../types/userLoanType'; import { PAYOUT_STATUS } from '../../constants'; declare class UserLoanModel extends Model { id: string; userId: string; instituteId: string; academicCalendarId: string; additionalPayoutTypeId: string; amount: number; paidAmount: number; description: string; 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 UserLoanModel;