import React from "react"; interface ClickOutsideProps { ref: React.RefObject; } /** * Creates and returns reference to a div element, which the caller can * populate. `callback` is invoked if a click occurs outside of the reference * Useful for dropdown implementation */ export default function useClickOutside(callback: (...args: any[]) => void): ClickOutsideProps; export {};