import { GlobalContext } from "./utils/context-util"; import { Application, Request, Response } from "express"; export declare function createExpressMiddleware(port?: number, app?: Application): { middleware: (request: Request, response: Response, next: any) => void; ctx: GlobalContext; }; declare function start(port?: number): void; export default start;