import { Model } from 'sequelize'; import { IUserHasBatchModelAttributes } from '../../interfaces/userHasBatchInterface'; import { TUserHasBatchModelCreationAttributes } from '../../types/userHasBatchType'; import { BOOLEAN_STATUS } from '../../constants'; declare class UserHasBatchModel extends Model { id: string; userId: string; batchId: string; subjects: string[]; academicCalendarId: string; isTeachingBatch: BOOLEAN_STATUS; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; } export default UserHasBatchModel;