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, onLeadingEdge, onTrailingEdge, onTrailingOverflow, className: consumerClassName, style: consumerStyle, "data-testid": dataTestId, "data-dtrum-mask": dataDtrumMask, "data-dtrum-allow": dataDtrumAllow, ...remainingProps }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element) & { Number: (props: import("../number-spin-button/types.js").NumberSpinButtonProps & import("react").RefAttributes) => import("react").ReactElement | null; Text: (props: import("../text-spin-button/types.js").TextSpinButtonProps & import("react").RefAttributes) => import("react").ReactElement | null; Separator: ({ children, trigger, className: consumerClassName, style: consumerStyle, "data-testid": dataTestId, ...remainingProps }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; };