import { FC, HTMLAttributes } from 'react'; export interface HeroBodyProps extends HTMLAttributes { /** Eventuali classi aggiuntive */ className?: string; testId?: string; } export declare const HeroBody: FC;