/** * @author: yanxianliang * @date: 2025-06-27 09:32 * @desc: 工作流组件 * * 支持工作流编排能力,支持节点自定义 * * 支持nodes 外部传递 * 支持x6数据结构转换 * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import '@xyflow/react/dist/style.css'; import React from "react"; import { IWorkflowProps } from "./types"; import type { Node } from '@xyflow/react'; declare const _default: (props: IWorkflowProps) => React.ReactElement; export default _default;