import { ListProps } from 'react-window'; import { LeaderboardItemProps } from './list-item'; type LeaderboardListProps = { items: Omit[]; currentUserId?: string; openItemDetail: (id: string) => void; fetchMore: () => void; onScroll?: ListProps['onScroll']; }; export { LeaderboardStaticList } from './static'; export declare const LeaderboardList: React.FC;