/** * Machine-clusters renderer — cross-host deployment. * * Nodes grouped by host in vertical columns. */ import type { MachineClustersContent } from "./schemas.js"; export interface MachineClustersRenderInput { title: string; subtitle?: string; content: MachineClustersContent; } export declare function renderMachineClustersBody({ title, content }: MachineClustersRenderInput): { bodyHtml: string; topologyCss: string; }; //# sourceMappingURL=machine-clusters.d.ts.map