import { MouseEvent, ComponentClass } from 'react' import { CommonEventFunction } from '@tarojs/components/types/common' import AtComponent, { AtIconBaseProps } from './base' export interface AtCardProps extends AtComponent { /** * 元素的辅助信息 */ note/*;备注*/?: string /** * 是否通栏 */ isFull/*;是通栏*/?: boolean /** * 元素的缩略图 */ thumb/*;缩略图*/?: string /** * 元素的标题 */ title/*;标题*/?: string /** * 元素的额外信息 */ extra/*;额外*/?: string /** * 元素的额外信息自定义样式 */ extraStyle/*;额外样式*/?: object /** * 图标,仅支持 AtIcon 支持的类型, * object 属性有 value color size prefixClass */ icon/*;图标*/?: AtIconBaseProps /** * 元素自定义图标 */ renderIcon/*;绘制图标*/?: JSX.Element /** * 元素被点击触发的事件 */ onClick/*;当点*/?: CommonEventFunction } declare const AtCard: ComponentClass export default AtCard