/** * ui 命令 - 启动 Web UI 本地服务 */ import { Command } from 'commander'; import { type StartedUiHttpServerHandle } from '../../ui/http/server.js'; export interface UiCommandOptions { root?: string; host?: string; port?: string; staticRoot?: string; } export declare function createUiCommand(): Command; export declare function startUiServer(options: UiCommandOptions): Promise; //# sourceMappingURL=ui.d.ts.map