import { FC } from 'react'; import '@logicflow/core/dist/style/index.css'; import "@logicflow/extension/lib/style/index.css"; import * as Options from '@logicflow/core/types/options'; import './logic-flow-graph.less'; export interface LogicFlowGraphProps { instance?: string; constructorOptions?: Omit; resize?: { width: number; height: number; heightOffset: number; }; elements?: any[]; defaultGraphData?: any; event?: (type: string, args: any) => void; } declare const LogicFlowGraph: FC; export default LogicFlowGraph;