interface UseKeyboardControlsProps { focusedValue?: T; moveFocusedValue: (amount: number) => void; isExpanded?: boolean; toggleExpanded: (expand: boolean) => void; isFocused?: boolean; selectValue: (value: T) => void; } declare const useKeyboardControls: ({ focusedValue, moveFocusedValue, isExpanded, toggleExpanded, isFocused, selectValue, }: UseKeyboardControlsProps) => void; export default useKeyboardControls;