import type React from "react"; import { type ReactNode } from "react"; type Reference = { current?: JSX.Element; focus?: (...args: any[]) => any; }; type ChildrenHandlers = { focusedIndex: number; handleArrowNavigation: (e: React.KeyboardEvent) => void; setFocusedIndex: React.Dispatch>; }; type FocusManagerProps = { refs?: Array; defaultFocusedIndex: number | null; children: (handlers: ChildrenHandlers) => ReactNode; }; declare function FocusManager({ children, refs, defaultFocusedIndex }: FocusManagerProps): import("react/jsx-runtime").JSX.Element; export default FocusManager;