/// import { Server } from 'http'; import { Application } from 'express'; import { SPAServerConfig } from './types'; export interface RunningSPAServer { readonly app: Application; readonly server: Server; readonly config: Readonly; } export declare function createSPAServer(baseConfig: SPAServerConfig): Promise;