import { RefObject } from 'react';
/**
 * Hook that detects when an element is partially visible in the viewport
 * @param elementRef - Reference to the DOM element to observe
 * @returns boolean indicating if the element is partially visible in the viewport
 */
export declare const usePartiallyVisible: (elementRef: RefObject<HTMLElement | null>) => boolean;
