import type { ElementType, FC, HTMLAttributes } from 'react';
export interface CardBodyProps extends HTMLAttributes<HTMLElement> {
    tag?: ElementType;
}
declare const CardBody: FC<CardBodyProps>;
export default CardBody;
