import React from "react"; interface LazyListProps { elements: React.ReactNode[]; onFullyLoaded?: () => void; avgItemHeight?: number; itemsToMountWith?: number; } export default function LazyList(props: LazyListProps): JSX.Element; export {};