import React from 'react'; import './Card.scss'; /** * 定义 MtCard 的 Props 类型 */ export interface MtCardProps { /** 内容 */ children?: React.ReactNode; /** 默认header信息, 也可以通过headerSlot设置 */ header?: string; /** 默认footer信息, 也可以通过footerSlot设置 */ footer?: string; /** body自定义样式 */ bodyStyle?: React.CSSProperties; /** body 自定义class */ bodyClass?: string; /** 显示shadow条件, always(一直显示), hover(悬浮显示),never(不显示) */ shadow?: string; headerSlot?: React.ReactNode; footerSlot?: React.ReactNode; } declare const MtCard: React.FC; export default MtCard;