import { Model } from 'sequelize'; import { IUserHasPermissionModelCreation } from '../../interfaces/userHasPermissionInterface'; import { TUserHasPermissionAttributes } from '../../types/userHasPermissionType'; declare class Permission extends Model { id: string; userId: string; roleId: string; 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 Permission;