import { RefObject } from "react";
export declare function useElementVisibility<T extends HTMLElement>(ref: RefObject<T | null>): {
    show: () => void;
    hide: () => void;
};
