import * as React from 'react'; import './index.scss'; export interface ProCardProps { /** * 类型 */ title?: string; subTitle?: string; tooltip?: string; layout?: "default" | "center"; children?: string; style?: object; } declare const ProCard: React.FC; export default ProCard;