import { IGraph } from './graph'; export * from './node'; export * from './edge'; export * from './editor'; export * from './graph'; declare global { interface Window { flowEditorGraphMap: { [key: string]: IGraph; }; } }