import { Theme } from '@material-ui/core'; import { FunctionComponent } from 'react'; import { StoreSet } from '../stores'; export interface AppProps { /** * The theme of the application. */ theme: Theme; /** * The stores of the application. */ storeSet: StoreSet; } /** * Application entry point. Contains the main routes, which are above the layout. */ declare const App: FunctionComponent; export default App;