import type { KeyboardEvent, ReactNode } from 'react'; import type { FocusScopeProps } from './FocusScope'; export type FocusArrowNavigatorProps = FocusScopeProps & { children: ReactNode; }; export declare const FocusArrowNavigator: import("react").ForwardRefExoticComponent<{ [index: `data-${string}`]: unknown; as?: any; css?: import("@fuel-ui/css").ThemeUtilsCSS | undefined; className?: string | undefined; children?: ReactNode; } & FocusScopeProps & { children: ReactNode; } & import("react").RefAttributes>; export declare function useFocusNavigator(): { onKeyDown: (e: KeyboardEvent) => void; };