/** * Ask to sequentially add elements to the flow, each creation should be checked against store, * then applied via current reducers * * @params {array} listOfActionCreation */ export declare const addFlowElements: (listOfActionCreation: any) => { type: string; listOfActionCreation: any; }; /** * ask for flow reset, emptying, nodes, links, ports collections */ export declare const resetFlow: () => { type: string; }; /** * reset old flow, load elements for the new flow */ export declare const loadFlow: (listOfActionCreation: any) => { type: string; listOfActionCreation: any; }; export declare function setZoom(transform: { k: number; x: number; y: number; }): { type: string; transform: { k: number; x: number; y: number; }; } | null; export declare function zoomIn(scale: number): { type: string; scale: number; }; export declare function zoomOut(scale: number): { type: string; scale: number; };