/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import { type ReactNode } from 'react';
export interface SpotlightStepCountProps {
    /**
     * A `testId` prop is provided for specified elements, which is a unique
     * string that appears as a data attribute `data-testid` in the rendered code,
     * serving as a hook for automated tests
     */
    testId?: string;
    /**
     * Elements to be rendered inside the `SpotlightStepCount`.
     */
    children?: ReactNode;
}
/**
 * __Spotlight StepCount__
 *
 * `SpotlightStepCount` groups `SpotlightAction` components.
 *
 */
export declare const SpotlightStepCount: React.ForwardRefExoticComponent<React.PropsWithoutRef<SpotlightStepCountProps> & React.RefAttributes<HTMLSpanElement>>;
