import { CSSProperties } from 'react'; export interface PisellAppCardProps { /** 类名 */ className?: string; /** 样式 */ style?: CSSProperties; /** 头像地址 */ avatar?: string; /** icon */ icon?: string; /** 标签列表 */ tags?: Array<{ label: string; color?: 'success' | 'warning' | 'error' | 'gray'; type: 'pill_color' | 'pill_outline'; }>; /** 标题 */ title: string; /** 描述 */ description?: string; /** 底部按钮列表 */ bottomButtons?: Array<{ label: string; onClick?: () => void; type?: 'primary' | 'default' | 'dashed' | 'link' | 'text'; hidden: boolean; }>; /** 右侧更多操作列表 */ moreActions?: Array<{ label: string; onClick?: () => void; icon?: React.ReactNode; }>; }