import type { Dispatch, RefObject, SetStateAction, UIEventHandler } from 'react';
interface UseOnScrollEndProps {
    objectPageRef: RefObject<HTMLDivElement>;
    setTabSelectId: Dispatch<SetStateAction<string | null>>;
}
export declare function useOnScrollEnd(props: UseOnScrollEndProps): UIEventHandler<HTMLDivElement>;
export {};
