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