/** * @author: yanxianliang * @date: 2025-08-19 10:58 * @modified:2025/8/19 10:58 by yanxianliang * @desc: 是否处于同一个父容器中 * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import { Node } from "@xyflow/react"; export declare const isInSameParent: (from: Node, target: Node) => boolean;