import React, { ReactNode } from 'react'; import { TableCollection } from '@react-types/table'; export declare const hasPaginationChild: (children: ReactNode | undefined, child: React.ElementType) => { hasPagination: boolean; rowsPerPage: number; }; export declare const isInfinityScroll: (collection: TableCollection) => boolean;