import { type ReactElement, type ReactNode } from 'react'; import type { TextSpinButtonProps, TextSpinButtonRef } from './types.js'; /** * Allows to check if a ReactNode is a TextSpinButton element. * @internal */ export declare function isTextSpinButton(node: ReactNode): node is ReactElement; /** * Use the _TextSpinButton component to pick a text from a list of given text values. * @internal */ export declare const TextSpinButton: (props: TextSpinButtonProps & import("react").RefAttributes) => React.ReactElement | null;