declare type Flow = {
id: string;
class: string;
tooltip?: Array<any>;
};
declare type BpmnOption = {
mode: string;
xml: string;
flows: Array<Flow>;
};
declare const openWorkflowChart: (bpmnOption: BpmnOption) => void;
export default openWorkflowChart;