import React from 'react'; import Insight from '../../types/insight'; import { UserGroupI } from '../../types/userGroup'; import { UserTagTypes } from '../../types/userTags'; import './styles/userListPanel.less'; export interface UserTablePanelPropsI { param?: { userGroup?: UserGroupI; tag?: Partial; propertyValue?: string; layerId?: Required['layerLabelId']; queryParams?: { count: number; data: string; }; }; module?: 'group' | 'tag'; innerMode?: boolean; btnsPosition?: Pick; insightParam?: Insight.Params['param']; onToDetail?: (id: string, cId?: string) => void; importUser?: (name: string) => void; scrollContainer?: string; /** * 是否使用简化api,为true时,将不再有先获取uids再获取用户详情列表的逻辑,而是整合成一个接口 */ simpleApi?: boolean; simpleApiParams?: Insight.Params['simpleApiParams']; onChangeCount?: (count: number) => void; } declare const UserListPanel: React.FC; export default UserListPanel;