/** * Gantt renderer — schedule / roadmap / timeline bars. * * Tasks rendered as horizontal bars on a grid with rows and a time axis. */ import type { GanttContent } from "./schemas.js"; export interface GanttRenderInput { title: string; subtitle?: string; content: GanttContent; } export declare function renderGanttBody({ title, content }: GanttRenderInput): { bodyHtml: string; topologyCss: string; }; //# sourceMappingURL=gantt.d.ts.map