type UseScrollDetectionReturnType = {
    handleScrollDetection: (element: HTMLElement | null | undefined) => void;
    hasScroll: boolean;
};
/**
 * Custom hook that determines if an element has scroll
 *
 * @returns An object containing the `hasScroll` boolean and the `handleScrollDetection` callback function to initialize the hook.
 */
export declare const useScrollDetection: () => UseScrollDetectionReturnType;
export {};
