import { Model } from 'sequelize'; import { IRmsDepartmentAttributes } from '../../interfaces/rmsDepartmentInterface'; import { TRmsDepartmentCreationAttributes } from '../../types/rmsDepartmentType'; import { COMMAN_STATUS } from '../../constants'; declare class RmsDepartmentModel extends Model implements IRmsDepartmentAttributes { id: string; instituteId: string; departmentCode: string; departmentName: string; description?: string | null; status: COMMAN_STATUS; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: string; static associate(models: any): void; } export default RmsDepartmentModel;