import React from 'react'; interface TableSentinelProps { onIntersect: () => void; isLoading?: boolean; /** Fix Bug C: pass the scroll container ref so IntersectionObserver reads it inside the * effect (post-commit) rather than at render time when the ref is still null. * Required when maxHeight is set (internal-scroll mode); omit for page-level scroll. */ scrollableRootRef?: React.RefObject; } export declare const TableSentinel: React.FC; export {};