/// import * as express from "express"; import { ITool } from "./tools/Tool"; declare class Framework { app: express.Application; host: string; hostname: string; httpPort: number; httpsPort: number; httpsApiUrl: string; httpApiUrl: string; httpsKeyFile: string; httpsCertFile: string; mongoHost: string; mongoPort: number; mongoDbName: string; tools: ITool[]; constructor(); createDB(): void; startServer({host, hostname, httpPort, httpsPort, httpsKeyFile, httpsCertFile, mongoHost, mongoPort, mongoDbName}?: { host?: string; hostname?: string; httpPort?: number; httpsPort?: number; httpsKeyFile?: string; httpsCertFile?: string; mongoHost?: string; mongoPort?: number; mongoDbName?: string; }): void; use(tool: ITool): void; } export default Framework;