import type { FocusEventHandlers, FocusState } from './types'; /** * __Use focus ring__ * * The useFocusRing hook manages focus in the rare cases where the focus ring’s visual application and the element that takes focus differ. * This is not typically a good practice for accessibility, so don’t do this unless you’ve consulted with the accessibility team. * */ declare const useFocusRing: (initialState?: FocusState) => { readonly focusState: "on" | "off"; readonly focusProps: FocusEventHandlers; }; export default useFocusRing;