import { ElementType, FC, HTMLAttributes } from'react';
exportinterfaceHeroTitlePropsextendsHTMLAttributes<HTMLSpanElement> {
/** Indica il tag da utilizzare per il titolo */tag?: ElementType;
testId?: string;
}
exportdeclareconstHeroTitle: FC<HeroTitleProps>;