import { IContainer, JSONObject, NodeBase } from "../Container"; import { Express, Request, Response } from "express"; export declare class WebServer extends NodeBase { private readonly app; private readonly port; constructor(id: string, container: IContainer, config: JSONObject); getApp(): Express; addGetEndpoint(path: string, method: (req: Request, res: Response) => void): void; addPostEndpoint(path: string, method: (req: Request, res: Response) => void): void; startServer(): void; } //# sourceMappingURL=WebServer.d.ts.map