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