interface FocusStateProps { target: React.RefObject; onEnter?: (node: HTMLElement) => void; onExit?: (node: HTMLElement) => void; } declare function useFocusState(props: FocusStateProps): { active: boolean; focusItemValue: string | number | null | undefined; setFocusItemValue: import("react").Dispatch>; triggerProps: { onEnter: (...args: any[]) => any; onExit: (...args: any[]) => any; }; }; export default useFocusState;