import { type MutableRefObject } from 'react'; /** * React hook for checking whether a referenced element is in the viewport or not. * The viewport is based on the window. * @internal */ export declare function useIsInViewport(): [MutableRefObject, boolean];