import React from 'react'; import './styles/index.less'; import type { UserTablePanelPropsI } from '../userListPanel'; import Insight from '../../../types/insight'; export interface ListBarPropsI extends Required> { count: number; orderBy: string; columns: any[]; showColumns: any[]; onShowColumnsChange: (data: any[]) => void; importUser: (name: string) => void; module: 'group' | 'tag'; innerMode?: boolean; simpleApiParams?: Insight.Params['simpleApiParams']; btnsPosition?: Pick; } declare const ListBar: React.FC; export default ListBar;