/** * Hook to listen for clicks outside of the target elements * @param {Function} callback - The function to call when a click outside is detected * @param {Array} refs - An array of refs of the target elements */ declare const useClickAway: (callback: any, refs: any) => void; export default useClickAway;