#!/usr/bin/env node import type { Server } from 'http'; import { type AppContext } from './context.js'; export interface DashboardServer { httpServer: Server; port: number; close(): void; } export declare function startDashboard(ctx: AppContext, port?: number): Promise; //# sourceMappingURL=server.d.ts.map