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