import { type Leaderboard } from "@betswirl/sdk-core"; import type { LeaderboardItem } from "../../types/types"; interface LeaderboardCardProps { item: LeaderboardItem; raw?: Leaderboard; onViewOverview?: (id: string) => void; onClaimSuccess?: () => void; } export declare function LeaderboardCard({ item, raw, onViewOverview, onClaimSuccess, }: LeaderboardCardProps): import("react/jsx-runtime").JSX.Element; export {};