import { Model } from 'sequelize'; import { COMMAN_STATUS } from '../../constants/app'; import { IUserHasRoleAttributes } from '../../interfaces/userHasRoleInterface'; import { TUserHasRoleCreationAttributes } from '../../types/userHasRoleType'; declare class UserHasRoleModel extends Model { id: string; status: COMMAN_STATUS; userId: string; roleId: string; 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 UserHasRoleModel;