/** * @author: yanxianliang * @date: 2025-07-03 13:20 * @desc: 血缘布局 * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import { LayoutConfig } from "../.."; import { Edge, Node } from "@xyflow/react"; export declare const bloodLayout: (config: LayoutConfig) => { nodes: NodeType[]; edges: EdgeType[]; };