import type { AgentDiagramData, DiagramOutputFormat } from '../types/index.js'; export declare function renderDiagram(data: AgentDiagramData, format: 'mermaid' | 'maxgraph-json'): string; export declare function renderDiagram(data: AgentDiagramData, format: 'drawio'): Promise; export declare function renderDiagram(data: AgentDiagramData, format: DiagramOutputFormat): string | Promise;