import { Model } from 'sequelize'; import { ISportModelAttributes } from '../../interfaces/sportInterface'; import { TSportModelCreationAttributes } from '../../types/sportType'; import { COMMAN_STATUS } from '../../constants/app'; export declare class SportModel extends Model { id: string; name: string; code: string; description?: string; icon?: string; status: COMMAN_STATUS; sportsAcademyId?: string; createdBy?: string; updatedBy?: string; deletedBy?: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: string; static associate(models: any): void; } export default SportModel;