import { Model } from 'sequelize'; import { IInternalMarkModelAttributes } from '../../interfaces/internalMarkInterface'; import { TInternalMarkModelCreationAttributes } from '../../types/internalMarkType'; declare class InternalMarkModel extends Model { id: string; instituteId?: string; academicCalendarId: string; userId: string; subjectId: string; totalMark: number; obtainedMarks: number; batchId: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; static associate(models: any): void; static addHooks(models: any): void; } export default InternalMarkModel;