import React, { PropsWithChildren } from 'react'; import { LoadingProps } from '../Loading'; export declare type PaginatorProps = { loadNextPage: () => any; element?: React.MutableRefObject; Loading?: React.ComponentType; showLoading?: boolean; reverse?: boolean; useCapture?: boolean; }; export declare const UnMemoizedPaginator: (props: PropsWithChildren) => JSX.Element; export declare const Paginator: React.MemoExoticComponent<(props: PropsWithChildren) => JSX.Element>;