import React from 'react'; import type { DataInfiniteLoaderProps } from './types'; export declare const DataInfiniteLoader: ({ status, error, errorAction: errorActionProp, reverse, hasNextPage, isFetchingNextPage, fetchNextPage, hasPreviousPage, isFetchingPreviousPage, fetchPreviousPage, LoadingView, ErrorView, MoreView: MoreViewProp, loadingViewProps, errorViewProps, moreViewProps, children, }: DataInfiniteLoaderProps) => React.ReactNode;