/** * InfiniteScrollList Component * * Presentation component for infinite scroll list * Optimized with React.memo for performance */ import React from "react"; import type { InfiniteScrollListProps } from "../../domain/interfaces/infinite-scroll-list-props"; export declare const InfiniteScrollList: (props: InfiniteScrollListProps) => React.ReactElement;