/** * OpenKernel — Dashboard Plugin * * Serves an HTTP endpoint with live mission/provider/worker status. * GET / → HTML dashboard * GET /status → JSON status snapshot * GET /missions → JSON mission list * GET /events → JSON recent event history * * Read-only. No auth. Intended for local dev / ops visibility. */ import type { Plugin } from '../types.js'; export interface DashboardPluginOptions { port?: number; host?: string; } export declare function createDashboardPlugin(options?: DashboardPluginOptions): Plugin;