import { FC } from 'react'; import './styles.less'; export interface IFlowChart { graphDSL: any; className?: string; nodeOnClick: (data: any) => void; edgeOnClick: (data: any) => void; onChange: (data: any) => void; } export declare const FlowChart: FC;