import { ComponentClass } from 'react'
import CtsComponent from './base'

export interface CtsGroupStatusProps extends CtsComponent {
  /**
   * 模式，active：在岗班组，history：历史的班组
   * @description 可选择的值 'active', 'history'
   * @type {('active'|'history')}
   * @default 'active'
   */
  mode: 'active' | 'history'
  /**
   * 组列表数据
   */
  groupList: any[]
}

declare const CtsGroupStatus: ComponentClass<CtsGroupStatusProps>

export default CtsGroupStatus