import type { LeaderboardItem } from "../../types/types"; interface LeaderboardListProps { title: string; items: LeaderboardItem[]; onViewOverview?: (id: string) => void; } export declare function LeaderboardList({ title, items, onViewOverview }: LeaderboardListProps): import("react/jsx-runtime").JSX.Element | null; export {};