import { type WebServer } from './server.js'; import { type WebAccessConfig } from './access.js'; export interface StartWebOptions { configPath?: string; port?: number; open?: boolean; binPath: string; log?(line: string): void; bind?: string; publicOrigin?: string; access?: WebAccessConfig; } export interface RunningWebConsole extends WebServer { address: string; } export declare function startWebConsole(options: StartWebOptions): Promise;