import { IToastProps } from '@blueprintjs/core'; import React from 'react'; import { MMELRepo, RepoIndex, RepoItems, RepoItemType } from '../../model/repo'; declare const RepoGroup: React.FC<{ legend: string; list: RepoItems[]; deleteItem: (ns: string, type: RepoItemType) => void; setRepo: (x: MMELRepo | undefined) => void; renameRepo?: (x: MMELRepo, newName: string) => void; index?: RepoIndex; sendMsg?: (x: IToastProps) => void; repo?: MMELRepo; }>; export default RepoGroup; //# sourceMappingURL=RepoGroup.d.ts.map