import { Model } from 'sequelize'; import { IUserHasSportBatchModelAttributes } from '../../interfaces/userHasSportBatchInterface'; import { TUserHasSportBatchModelCreationAttributes } from '../../types/userHasSportBatchType'; import { USER_TYPES, USER_HAS_SPORT_BATCH_STATUS } from '../../constants/app'; export declare class UserHasSportBatchModel extends Model { id: string; userId: string; metaId?: string; batchId: string; sportIds: string[]; timeSloteIds: string[]; sportAcademyId: string; userType: USER_TYPES; status: USER_HAS_SPORT_BATCH_STATUS; createdBy?: string; updatedBy?: string; deletedBy?: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; static associate(models: any): void; } export default UserHasSportBatchModel;