import { default as React } from 'react'; import { StyleConfig } from './Leaderboard.tsx'; interface LeaderProps { userId: string; imageUrl?: string; runningXP: number; name?: string; streak?: string; counter?: number | null; } interface LeaderBoardShowProps { leaderboardUserData: { data: LeaderProps[]; }; memberShip: { isEnabled: boolean; xp: number; rewards: string[]; _id: string; entityId: string; membershipTier: number; xpThreshold: number; description: string; imageIPFS?: string; createdAt: string; __v: number; imageUrl?: string; }[]; styleConfig?: StyleConfig; FirstRankIconImage?: string; SecondRankIconImage?: string; ThirdRankIconImage?: string; IsTopRank?: boolean; isXpImage?: boolean; rewardHead?: string; presentUserRank?: number | null; DefaultImage?: string; } declare const LeaderBoardShow: React.FC; export default LeaderBoardShow;