/// import { Application } from 'express-serve-static-core'; import { Server } from 'http'; export declare type ExpressApplicationCreator = () => Application; export declare function expressWait(what: string, promise: Promise): void; export declare function bootExpressApp(appOrCreate: Application | ExpressApplicationCreator): Promise;