import { Model } from 'sequelize'; import { IFloorManagementModelAttributes } from '../../interfaces/floorManagementInterface'; import { TFloorManagementCreationAttributs } from '../../types/floormanagementType'; import { COMMAN_STATUS } from '../../constants/app'; declare class FloorManagementModel extends Model { id: string; title: string; floorNumber: number; status: COMMAN_STATUS; instituteId: string; oldId?: 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 FloorManagementModel;