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, ...props }: PropsWithChildren) => import("react/jsx-runtime.js").JSX.Element;