import * as React from 'react'; import { StandardProps } from '../../common'; export interface CardBodyProps extends StandardProps { /** * Content for the body. */ children?: React.ReactNode; } /** * Represents a simple re-usable card body container. */ export declare const CardBody: React.SFC & { inner: { readonly StyledCardBody: any; }; };