import { FC, HTMLAttributes, ElementType } from 'react';
export interface StepperDotsProps extends HTMLAttributes<HTMLElement> {
    /** Utilizzarlo in caso di utilizzo di componenti personalizzati */
    tag?: ElementType;
    /** Classi aggiuntive da usare per il componente Badge */
    className?: string;
    /** Abilita il tema scuro per il componente StepperDots */
    dark?: boolean;
    testId?: string;
}
export declare const StepperDots: FC<StepperDotsProps>;
