/// /** * Hook that alerts clicks outside of the passed ref * This hook needs to be typed with the referenced object type */ declare const useClickOutside: (ref: import("react").RefObject, callback: (event?: MouseEvent | undefined) => void) => void; export default useClickOutside;