import type { Ref, RefObject } from 'react'; import type { DOMElementHandle } from '../../handle/handle'; type FocusableChildrenOptions = { onlyTabbables?: boolean }; export declare function useFocusableChildren(options?: FocusableChildrenOptions): { ref: RefObject; focusableChildren: HTMLElement[]; }; export declare function useKeyboardFocusNavigation(): { ref: Ref HTMLElement | DOMElementHandle | null)>; }; export {};