///
import React from 'react';
export interface CardBodyProps {
prefixCls?: string;
children?: any;
className?: string;
style?: {};
}
export default class CardBody extends React.Component {
static defaultProps: {
prefixCls: string;
};
render(): JSX.Element;
}