import { Model } from 'sequelize'; import { IBatchSubjectBookAssessmentModelAttributes } from '../../interfaces/batchSubjectBookAssessmentInterface'; import { TBatchSubjectBookAssessmentModelCreationAttributes } from '../../types/batchSubjectBookAssessmentType'; export declare class BatchSubjectBookAssessmentModel extends Model { id: string; batchId: string; subjectId: string; standardId: string; assessmentType: string; instituteId?: string; academicCalendarId?: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; } export default BatchSubjectBookAssessmentModel;