import React from "react"; /** * Tracks the focus state of a DOM element. * * @template T - Element type (defaults to `HTMLElement`) * @returns A tuple `[ref, isFocused]` — attach `ref` to the target element * * @example * const [ref, focused] = useFocus(); * */ export declare const useFocus: () => [React.RefObject, boolean]; //# sourceMappingURL=useFocus.d.ts.map