import * as React from 'react'; import { CardFooterPropsType } from './PropsType'; export interface CardFooterProps extends CardFooterPropsType { prefixCls?: string; className?: string; style?: React.CSSProperties; } declare function CardFooter(props: CardFooterProps): JSX.Element; declare namespace CardFooter { var defaultProps: { prefixCls: string; }; } export default CardFooter;