/** * @author: yanxianliang * @date: 2025-07-03 09:53 * @desc: mindmap 布局 * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import { LayoutConfig, MindMapLayoutConfig } from "../../.."; import { Edge, Node } from "@xyflow/react"; export declare const mindMapLayout: (layoutConfig: MindMapLayoutConfig | undefined, config: LayoutConfig) => { nodes: NodeType[]; edges: EdgeType[]; };