export declare function useInViewport<T extends HTMLElement = any>(): {
    ref: import("react").RefObject<T>;
    inViewport: boolean;
};
