import type { ListProps } from './List'; type ScrollabilityCheckParams = Pick & { isEmpty: boolean; }; /** * Custom hook to manage scrollability state for shadow indicators. * Only runs when shadow and scrollable props are enabled for performance. * * @param params - Parameters from ListProps needed for scrollability checking * @returns Object containing isEnd state and refs for wrapper and table elements */ export declare const useScrollabilityCheck: ({ shadow, scrollable, children, loading, isEmpty, }: ScrollabilityCheckParams) => { isEnd: boolean; tableRef: import("react").RefObject; setWrapperRef: (node: HTMLDivElement | null) => void; handleScroll: (event: React.UIEvent) => void; }; export {};