import { type RefObject } from 'react'; import { type TextSpinButtonProps, type TextSpinButtonRef } from '../text-spin-button/types.js'; /** * This hook provides text selection and cursor utility functions. * Because the SpinButton is a contenteditable span, this is not provided natively. * @internal */ export declare const useTextSpinButton: (props: Pick) => Pick & { ref: RefObject | null; onChange: (value: string | number | null) => void; };