import Tab from './Tab'; export { Tab }; export default class Logger { private port; private app; private ws; private tabs; private server; constructor(port?: number); private registerRoutes; /** * Creates a new tab with the given name, the name should be human readable * it will be used as the tab title in the front end. */ createTab(name: string): Tab; /** * Start the HTTP server hosting the web UI. * * @returns the port number */ start(): Promise; /** * Stop the HTTP server hosting the web UI */ stop(): void; } //# sourceMappingURL=Logger.d.ts.map