import { Model } from 'sequelize'; import { IUserBookAssessmentModelAttributes } from '../../interfaces/userBookAssessmentInterface'; import { TUserBookAssessmentModelCreationAttributes } from '../../types/userBookAssessmentType'; import { USER_BOOK_ASSESSMENT_STATUS } from '../../constants/app'; declare class UserBookAssessmentModel extends Model { id: string; assessmentBookId: string; assessmentDateId: string; batchId: string; userId: string; status: USER_BOOK_ASSESSMENT_STATUS; academicCalendarId?: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; } export default UserBookAssessmentModel;