import * as react from 'react';
import { HTMLAttributes } from 'react';

interface CardBodyProps extends HTMLAttributes<HTMLDivElement> {
    elementType?: string;
}
declare const _CardBody: react.ForwardRefExoticComponent<CardBodyProps & react.RefAttributes<HTMLDivElement>>;

export { _CardBody as CardBody, CardBodyProps };
