import { type Server } from 'http'; export type DashboardOptions = { port?: number; host?: string; }; export declare function startDashboard(opts?: DashboardOptions): Server;