import { FunctionComponent, HTMLProps, ReactType } from 'react'; export interface CardBodyProps extends HTMLProps { component?: ReactType; } declare const CardBody: FunctionComponent; export default CardBody;