import React from 'react';
import './index.less';
export interface ICardProps {
    className?: string;
    style?: React.CSSProperties;
    coverStyle?: React.CSSProperties;
    title?: React.ReactNode | string;
    isHover?: boolean;
    cover?: React.ReactNode;
    extra?: React.ReactNode | string;
    children?: React.ReactNode | string;
}
declare const Card: (props: ICardProps) => JSX.Element;
export default Card;
