import React from 'react'; import { UserTablePanelPropsI } from '../GroupUserList/userListPanel'; import './styles/insightUserList.less'; import Insight from '../../types/insight'; export interface InsightUserListProps { param: UserTablePanelPropsI['insightParam']; onToDetail: UserTablePanelPropsI['onToDetail']; /** * 是否使用简化api,为true时,将不再有先获取uids再获取用户详情列表的逻辑,而是整合成一个接口 */ simpleApi?: boolean; simpleApiParams?: Insight.Params['simpleApiParams']; onChangeCount?: UserTablePanelPropsI['onChangeCount']; } declare const InsightUserList: React.FC; export default InsightUserList;