/** * Hook that alerts clicks outside of the passed ref * This hook needs to be typed with the referenced object type */ declare const useKeydown: (enable: boolean, callback: (event: KeyboardEvent) => void) => void; export default useKeydown;