import { Model } from 'sequelize'; import { ISubjectInternalMarkModelAttributes } from '../../interfaces/subjectInternalMarkInterface'; import { TSubjectInternalMarkModelCreationAttributes } from '../../types/subjectInternalMarkType'; declare class SubjectInternalMarkModel extends Model { id: string; instituteId?: string; academicCalendarId: string; subjectId: string; totalMark: number; standardId: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; static associate(models: any): void; } export default SubjectInternalMarkModel;