import React from 'react'; import './styles/index.less'; export declare const classPrefix = "module-user-group-user-list"; export interface GroupUserListPropsI { module?: 'tag' | 'group'; onToDetail?: (id: string, cId?: string) => void; importUser?: (name: string) => void; onBackList?: () => void; importUserList?: (name: string, id: string) => void; } declare const GroupUserList: React.FC; export default GroupUserList;