import { ComponentClass } from 'react'
import CtsComponent from './base'

export interface CtsThumbProps extends CtsComponent {
  /**
   * 头像路径
   */
  headImg: string
  /**
   * 姓名
   */
  name: string
  /**
   * 样式形状，circle：圆形，square：圆角正方形
   * @description 可选择的值 'circle', 'square'
   * @type {('circle'|'square')}
   * @default 'circle'
   */
	type?: string
	  /**
   * 样式大小，small：小（58*58），normal：中等（80*80），big：大（106*106），large：超大（116*116）
   * @description 可选择的值 'small', 'normal', 'big', 'large'
   * @type {('small'|'normal'|'big'|'large')}
   * @default 'normal'
   */
  size?: string
}

declare const CtsThumb: ComponentClass<CtsThumbProps>

export default CtsThumb