import * as React from 'react'; import { CardPropsType } from './PropsType'; import './style.less'; export interface CardProps extends CardPropsType { prefixCls?: string; className?: string; noline?: boolean; subtitle?: string; substyle?: React.CSSProperties; borderRadius?: number; } declare function Card(props: CardProps): JSX.Element; declare namespace Card { var defaultProps: { prefixCls: string; full: boolean; noline: boolean; showHeadLine: boolean; showSeparatorLine: boolean; }; } export default Card; export { CardPropsType } from './PropsType';