import { SheetsRegistry } from 'jss'; import { FunctionComponent } from 'react'; import { ServerContext } from '../context'; import { StoreSet } from '../stores'; export interface RootProps { url: string; basename: string; serverContext: ServerContext; sheetsRegistry: SheetsRegistry; storeSet: StoreSet; } /** * The root component of the server. */ declare const Root: FunctionComponent; export default Root;