/** * This hook gives the ability to set the focus on an element * which is then blurred right away, thereby effectively resetting * the focus order. The next focusable element that comes after this element * will be focused on the next tab. * @param element - element which focus point should start from * @returns focusFrom function, when called sets the focus point to the given element */ export declare const useFocusFrom: (element: HTMLElement | null) => { focusFrom: () => void; }; //# sourceMappingURL=useFocusFrom.d.ts.map