import { ScrollNodeRef } from '../../../app'; import { ScrollStore } from '../../../app/useSdkScroll'; import { LeaderboardItemProps } from './list-item'; type LeaderboardListProps = { items: Omit[]; currentUserId?: string; openItemDetail: (id: string) => void; fetchMore: () => void; scrollNode: ScrollNodeRef; scrollStore: ScrollStore; hasMore: boolean; }; export declare const LeaderboardStaticList: React.FC; export {};