import { Model } from 'sequelize'; import { IUserHasSubjectFeeModelAttributes } from '../../interfaces/userHasSubjectFeeInterface'; import { TUserHasSubjectFeeModelCreationAttributes } from '../../types/userHasSubjectFeeType'; declare class UserHasSubjectFeeModel extends Model { id: string; instituteId: string; userId: string; academicYearId: string; subjectId: string; fee: number; createdBy?: string; updatedBy?: string; deletedBy?: string; readonly createdAt: Date; readonly deletedAt?: string; readonly updatedAt: Date; static associate(models: any): void; } export default UserHasSubjectFeeModel;