import React from 'react'; import { Express } from 'express'; import { ServerConfig } from "../models"; declare const webApp: (app: Express, ReactApp: React.ComponentType, config: ServerConfig & { allowedGroups?: string[]; globalGroups?: string[]; startupScriptFilename?: string; }) => void; export default webApp;