import { Model } from 'sequelize'; import { IClassRoomModelAttributes } from '../../interfaces/classRoomInterface'; import { TClassRoomModelCreationAttributes } from '../../types/classRoomType'; import { COMMAN_STATUS } from '../../constants/app'; export declare class ClassRoomModel extends Model { id: string; title: string; classroomNumber: string; status: COMMAN_STATUS; capacity: number; color: string; instituteId: string; floorId: string; typeManagementId?: string; academicCalendarId?: string; oldId?: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; } export default ClassRoomModel;