import { type PropsWithChildren } from 'react'; import type { SpinButtonGroupProps } from './types.js'; /** * Use the _SpinButtonGroup to combine text and number spinbuttons and provide ootb navigation between them. * @internal */ export declare const SpinButtonGroup: (({ children, valueOverflow, className: consumerClassName, style: consumerStyle, ...remainingProps }: PropsWithChildren) => import("react/jsx-runtime.js").JSX.Element) & { Number: (props: import("../number-spin-button/types.js").NumberSpinButtonProps & import("react").RefAttributes) => React.ReactElement | null; Text: (props: import("../text-spin-button/types.js").TextSpinButtonProps & import("react").RefAttributes) => React.ReactElement | null; Separator: ({ children, ...props }: PropsWithChildren) => import("react/jsx-runtime.js").JSX.Element; };