import { RefObject } from 'react'; /** * A hook that tracks whether an HTML element has focus. * @param ref React ref object for the element to monitor * @returns boolean indicating if the element is currently focused */ export declare function useFocus(ref: RefObject): boolean;