/** * @author: yanxianliang * @date: 2025-07-02 20:29 * @desc: 计算节点宽度 * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import { BaseThemeConfig } from "../.."; import { Node } from '@xyflow/react'; export declare function getNodeBoundWidth(defaultWidth: number, node: Node, theme: BaseThemeConfig): number;