import { Model } from 'sequelize'; import { ISubjectHasPayFeeHistoryModelAttributes } from '../../interfaces/subjectHasPayFeeHistoryInterface'; import { TSubjectHasPayFeeHistoryModelCreationAttributes } from '../../types/subjectHasPayFeeHistoryType'; declare class SubjectHasPayFeeHistory extends Model { id: string; instituteId: string; userId: string; subjectId: string; feeCollectionId: string; amount: number; academicCalendarId: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; } export default SubjectHasPayFeeHistory;