import React, { PropsWithChildren } from 'react'; import { LoadMoreButtonProps } from './LoadMoreButton'; import type { PaginatorProps } from '../../types/types'; export declare type LoadMorePaginatorProps = PaginatorProps & { /** A UI button component that handles pagination logic */ LoadMoreButton?: React.ComponentType; /** indicates if the `LoadMoreButton` should be displayed at the top of the list of channels instead of the bottom of the list (the default) */ reverse?: boolean; }; export declare const UnMemoizedLoadMorePaginator: (props: PropsWithChildren) => JSX.Element; export declare const LoadMorePaginator: (props: PropsWithChildren) => JSX.Element; //# sourceMappingURL=LoadMorePaginator.d.ts.map