import { Model } from 'sequelize'; import { IBatchSubjectProjectAssessmentModelAttributes } from '../../interfaces/batchSubjectProjectAssessmentInterface'; import { TBatchSubjectProjectAssessmentModelCreationAttributes } from '../../types/batchSubjectProjectAssessmentType'; export declare class BatchSubjectProjectAssessmentModel extends Model { id: string; batchId: string; subjectId: string; standardId: string; optionSelectionDueDate: Date; submissionDate: Date; instituteId?: string; title: string; descriptions: 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 BatchSubjectProjectAssessmentModel;