/** * Diagram builder — flowchart. */ import type { App } from '../../App'; import type { Group } from '../../shapes/Group'; import type { NodeOptions } from '../../types'; import type { DiagramData } from '../types'; /** Create a flowchart from node/edge data */ export declare function createFlowchart(app: App, data: DiagramData, options?: NodeOptions): Group;