import { Model } from 'sequelize'; import { IRoleManagementAttributes } from '../../interfaces/roleManagementInterface'; import { TRoleManagementCreationAttributes } from '../../types/roleManagementType'; declare class RoleManagement extends Model { id: string; title: string; description: string; appType: string; userType: string; masterId?: string; isDefault: boolean; instituteId?: string; academicCalendarId?: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: Date; readonly updatedAt: Date; static associate(models: any): void; } export default RoleManagement;