import { FC } from 'react'; import './CardItem.less'; export interface ICardItemProps { happyFlag?: any; title?: string; score?: string | number; standard?: string | number; tips?: string; } /** 流程价值与标准卡片组件 */ declare const CardItem: FC; export default CardItem;