interface AlternativePoints { CORRECT_AWAY_GOALS: number; CORRECT_GOAL_DIFFERENCE: number; CORRECT_HOME_GOALS: number; CORRECT_OUTCOME_1X2: number; } export interface LoyaltyTopXPoints { id: string; points: number; alternative: AlternativePoints; } export interface LoyaltyFeatures { rewards: { points: { top_x: LoyaltyTopXPoints[]; }; }; } export {};