/** * A simple wrapper around a store whose contents are expected to be in VisuallyJs's JSON data format. When the store * posts an update event, the contents of the store are queried and VisuallyJs's list of nodes, groups and edges * are updated to be in line with the contents of the store. * */ import { VisuallyJsModel } from "@visuallyjs/browser-ui"; export declare class StoreAdapter { model: VisuallyJsModel; store: any; constructor(model: VisuallyJsModel, store: any); processNodes(nodes: any): void; processGroups(groups: any): void; processEdges(edges: any): void; }