import React__default from 'react'; import { Profile, Group } from '../../types/models.js'; import { UIGroupPreviewComponentProps } from '../UIGroupPreview/UIGroupPreview.js'; type UIGroupListProps = { Preview?: React__default.ComponentType; defaultItemHeight?: number; activeProfile?: Profile; activeGroup?: Group; setActiveGroup?: (group?: Group) => void; }; type UIGroupListWithContextProps = UIGroupListProps & { hasMore: boolean; loading: boolean; loadMore: () => void; groups: Group[]; }; declare const UIGroupList: React__default.FC; export { UIGroupList, UIGroupListProps, UIGroupListWithContextProps }; //# sourceMappingURL=UIGroupList.d.ts.map