import { FC, HTMLAttributes } from 'react'; export interface HeroBackgroundProps extends HTMLAttributes { /** Un testo alternativo per descrivere l'immagine mostrata */ alt: string; /** L'URI dell'immagine da mostrare */ src: string; /** Il titolo dell'immagine */ title?: string; testId?: string; } export declare const HeroBackground: FC;