import { type KeyboardEvent as ReactKeyboardEvent } from 'react'; import type { TextSpinButtonProps } from '../types.js'; /** @internal */ export declare const useValueNavigation: (props: TextSpinButtonProps) => { value: string | null; onKeyDownHandler: (e: ReactKeyboardEvent) => void; searchValue: (key: string, fireOnChange?: boolean) => string | undefined; clearValue: (fireOnChange?: boolean) => void; };