import { Graph } from '@antv/x6'; export declare enum ActionType { create = "create", update = "update", remove = "remove" } export interface IModifyGraphAction { type: string; actionType: ActionType; data: any; } export declare const updateStore: (graph: Graph, onChange: (data: any) => void) => void;