import { ElementType, FC, HTMLAttributes } from 'react';
export interface HeroTitleProps extends HTMLAttributes<HTMLSpanElement> {
    /** Indica il tag da utilizzare per il titolo */
    tag?: ElementType;
    testId?: string;
}
export declare const HeroTitle: FC<HeroTitleProps>;
