import { HTMLAttributes, ReactElement, Ref } from 'react'; import { IComponentBaseProps } from '../types'; export type CardBodyProps = HTMLAttributes & IComponentBaseProps & { ref?: Ref; }; declare const CardBody: { ({ ref, children, className, dataTheme, ...props }: CardBodyProps): ReactElement; displayName: string; }; export default CardBody;