import { default as React } from 'react'; type Props = { onLoadMore: () => Promise; isLoading: boolean; label?: string; }; export declare const LoadMoreButton: React.FC; export {};