import React from "react"; type ListFooterProps = { loadingMore: boolean; dataLength: number; totalResult: number; hasMore?: boolean; }; declare const ListFooter: React.FC; export default ListFooter;