import { StormEventPage } from './events'; export declare class UIServer { private readonly systemId; private server; private port; constructor(systemId: string); isRunning(): boolean; getUrl(): string; start(): Promise; close(): void; resolveUrl(screenData: StormEventPage): string; resolveUrlFromPath(path: string): string; }