/** @jsx jsx */ /** @jsxFrag React.Fragment */ import React from 'react'; import { ModuleName } from '../../model/module/appModule'; import { MMELRepo, RepoIndex } from '../../model/repo'; /** * The displayed UI when nothing is open. * When a model / document is open, another UI will replace this one. */ declare const NeutralView: React.FC<{ selectedModule: ModuleName; setRepo: (x?: MMELRepo) => void; index: RepoIndex; }>; export default NeutralView; //# sourceMappingURL=NeutralView.d.ts.map