/// import { NodeUserType } from '../interface'; interface IGroupListProps { list: [string, NodeUserType[]][]; onKeywordChange: (v: string) => void; checkedKeys: string[]; keywords?: string; onChecked: (ids: string[]) => void; title: string; } declare function GroupList({ list, onKeywordChange, onChecked, checkedKeys, title }: IGroupListProps): JSX.Element; export default GroupList;