import { ApiFacade } from './facade'; import type { Express } from 'express'; export interface ServerReadyData { url: string; } export declare class GuiApi { private _gui; static create(this: new () => T): T; constructor(); initServer(server: Express): Promise; serverReady(data: ServerReadyData): Promise; get gui(): ApiFacade; }