import { FC, HTMLAttributes, ElementType } from 'react'; export interface CardTitleProps extends HTMLAttributes { /** Utilizzarlo in caso di utilizzo di componenti personalizzati */ tag?: ElementType; /** Classi aggiuntive da usare per il componente CardTitle */ className?: string; testId?: string; } export declare const CardTitle: FC;