import React, { CSSProperties } from 'react'; import { CardProps, SkeletonProps } from 'antd'; import './index.less'; interface CardExtraProps { skeletonProps?: SkeletonProps; hasSkeletion?: boolean; hoverStyle?: CSSProperties; isBoxShadow?: boolean; } declare const Card: { ({ className, children, loading, skeletonProps, hasSkeletion, hoverStyle, bordered, isBoxShadow, ...props }: CardProps & CardExtraProps): React.JSX.Element; Meta: React.FC; Grid: React.FC; }; export { Card };