import type { AgentDiagramData } from '../../types/diagram.js'; /** * Convert a drawio mxfile (or bare mxGraphModel) into an `AgentDiagramData`. * * @param xml the .drawio file contents * @param title diagram title (default "Imported Diagram") * @param type diagram type to emit (default "er"; pass "flowchart" for graphs) */ export declare function drawioToDiagram(xml: string, title?: string, type?: AgentDiagramData['type']): AgentDiagramData;