import { FC, HTMLAttributes, ElementType, Ref } from 'react';
import { CSSModule } from 'reactstrap/types/lib/utils';
export interface CardBodyProps extends HTMLAttributes<HTMLElement> {
    /** Utilizzarlo in caso di utilizzo di componenti personalizzati */
    tag?: ElementType;
    /** Classi aggiuntive da usare per il componente Card */
    className?: string;
    /** Da utilizzare per impostare un riferimento all'elemento DOM */
    innerRef?: Ref<HTMLElement>;
    /** Oggetto contenente la nuova mappatura per le classi CSS. */
    cssModule?: CSSModule;
    testId?: string;
}
export declare const CardBody: FC<CardBodyProps>;
