import * as React from 'react'; export interface CardBodyProps extends React.HTMLProps { prefixCls?: string; full?: boolean; content?: React.ReactNode | any; bodyStyle?: React.CSSProperties; className?: string; style?: React.CSSProperties; borderRadius?: number; } declare function CardBody(props: CardBodyProps): JSX.Element; declare namespace CardBody { var defaultProps: { prefixCls: string; }; } export default CardBody;