export interface DataTableInfiniteFooterProps { hasNextPage: boolean; isFetchingNextPage: boolean; onLoadMore: () => void; /** Skeleton rows shown while fetching. Default `3`. */ skeletonRows?: number; /** `IntersectionObserver` rootMargin. Default `'200px'`. */ rootMargin?: string; } /** * Infinite-scroll trigger for a `DataTable`. Place after ``. * When the sentinel intersects the viewport, calls `onLoadMore`. */ export declare function DataTableInfiniteFooter({ hasNextPage, isFetchingNextPage, onLoadMore, skeletonRows, rootMargin, }: DataTableInfiniteFooterProps): import("react").JSX.Element; //# sourceMappingURL=data-table-infinite-footer.d.ts.map