/** * @author: yanxianliang * @date: 2025-08-16 17:17 * @modified:2025/8/16 17:17 by yanxianliang * @desc: 生成边 id * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import { Connection } from "@xyflow/react"; import { EdgeBase } from "@xyflow/system"; export declare const getEdgeId: ({ source, sourceHandle, target, targetHandle }: Connection | EdgeBase) => string;