/** * Dashboard layout — what widgets to render and in what arrangement. * Re-reads `dashboard.yaml` on every request so users can edit the * template without bouncing the server. * * - GET /api/layout */ import type { IncomingMessage, ServerResponse } from "node:http"; import type { RouteContext } from "../route-context.js"; export declare function handle(req: IncomingMessage, res: ServerResponse, ctx: RouteContext): Promise; //# sourceMappingURL=layout.d.ts.map