/** * @author: yanxianliang * @date: 2025-06-27 20:04 * @desc: 测量节点并缓存 * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import { Edge, Node } from "@xyflow/react"; import { LayoutConfig, NodeDefinition } from "../../.."; export declare function workflowLayout(config: LayoutConfig, nodeTypeMap: Map>): { nodes: NodeType[]; edges: EdgeType[]; };