import { FC, HTMLAttributes, ElementType } from 'react'; import { CSSModule } from 'reactstrap/types/lib/utils'; export interface CardTextProps extends HTMLAttributes { /** Utilizzarlo in caso di utilizzo di componenti personalizzati */ tag?: ElementType; /** Classi aggiuntive da usare per il componente CardText */ className?: string; /** Oggetto contenente la nuova mappatura per le classi CSS. */ cssModule?: CSSModule; testId?: string; } export declare const CardText: FC;