import { Model } from 'sequelize'; import { ISyllabusModelAttributes } from '../../interfaces/syllabusInterface'; import { TSyllabusCreationAttributes } from '../../types/syllabusType'; import { COMMAN_STATUS } from '../../constants/app'; declare class SyllabusModel extends Model { status: COMMAN_STATUS; fileStorageId: string; instituteId: string; subjectId: string; id: 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 SyllabusModel;