import { Model } from 'sequelize'; import { APP_TYPE, COMMAN_STATUS, USER_TYPES } from '../../constants/app'; import { IRoleAttributes } from '../../interfaces/roleInterface'; import { TRoleCreationAttributes } from '../../types/roleType'; declare class RoleModel extends Model { id: string; name: string; status: COMMAN_STATUS; isDefault: boolean; instituteId: string; isDeleted: boolean; userType: USER_TYPES; appType: APP_TYPE; isInstituteDefault?: boolean; oldId?: string; academicCalendarId?: string; masterId?: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; } export default RoleModel;