import { type PropsWithChildren, type ReactElement, type ReactNode } from 'react'; import type { SpinButtonGroupSeparatorProps } from './types.js'; /** * Allows to check if a ReactNode is a SpinButtonGroupSeparator element. * @internal */ export declare function isSpinButtonGroupSeparator(node: ReactNode): node is ReactElement; /** * Used to define a trigger between spinbuttons. e.g. the colon within a time value 12:34. */ export declare const SpinButtonGroupSeparator: ({ children, trigger, className: consumerClassName, style: consumerStyle, "data-testid": dataTestId, ...remainingProps }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element;