/** * @Date: 2024-10-2 14:22:25 * @Description: 组件入口 * @Author: MoJie */ import React from "react"; import './index.less'; import "bpmn-js/dist/assets/bpmn-js.css"; import "bpmn-js/dist/assets/diagram-js.css"; import "bpmn-js/dist/assets/bpmn-font/css/bpmn-embedded.css"; import { ActionType } from './props/panel'; import { BpmnProps } from "./props"; /** * 自定义画布组件 */ declare const _default: ({ height, locale, align, bpmnStyle, ...props }: BpmnProps) => React.JSX.Element; export default _default; export type { ActionType };