import { Model } from 'sequelize'; import { ISportRoleModelAttributes } from '../../interfaces/sportRoleInterface'; import { TSportRoleModelCreationAttributes } from '../../types/sportRoleType'; import { COMMAN_STATUS } from '../../constants/app'; export declare class SportRoleModel extends Model { id: string; sportId: string; name: string; code: string; description?: string; icon?: string; status: COMMAN_STATUS; createdBy?: string; updatedBy?: string; deletedBy?: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: string; static associate(models: any): void; } export default SportRoleModel;