/** * @author: yanxianliang * @date: 2025-08-23 23:49 * @modified:2025/8/23 23:49 by yanxianliang * @desc: selectionChange 回调 * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import { Edge, Node, OnSelectionChangeParams } from "@xyflow/react"; import type { OnSelectionChangeFunc } from "@xyflow/react/dist/esm/types"; import { SelectionStrategy } from "../constants/SelectionStrategy"; export declare const useOnSelectionChange: (selectionStrategy: SelectionStrategy, onSelectionChange?: OnSelectionChangeFunc) => (selectionChange: OnSelectionChangeParams) => void;