import { RefObject } from 'react'; /** * Hook that triggers a callback when the user clicks outside the target element. */ export declare const useClickAway: (ref: RefObject, handler: (event: T) => void) => void;