import React from 'react'; export interface CaseReplyProps { /** * cover 区域背景色(使用 rgba 格式,如 'rgba(132, 220, 24, 0.15)') */ coverBackground?: string; /** * 引号图标的颜色(使用 rgb 格式,如 'rgb(132, 220, 24)') */ quoteIconColor?: string; /** * 引用文字内容(coverContent 内容) */ quote?: React.ReactNode; /** * 卡片标题(底部标题) */ title?: React.ReactNode; /** * 描述文字(底部描述,单行显示) */ description?: React.ReactNode; /** * 按钮文本(悬停时显示的按钮文字) */ buttonText?: string; buttonBar?: React.ReactNode; /** * 按钮点击事件 */ onButtonClick?: (e: React.MouseEvent) => void; /** * 点击卡片事件 */ onClick?: () => void; /** * 自定义样式 */ style?: React.CSSProperties; /** * 自定义类名 */ className?: string; /** * 类名前缀 */ prefixCls?: string; } declare const CaseReply: React.FC; export default CaseReply;