import { Tree } from './Tree'; import 'reflect-metadata'; import { ChartStructure } from './Treant'; export declare class TreeStore { tree: Tree; private store; constructor(tree: Tree); createTree(jsonConfig: ChartStructure): Tree; get(treeId: number): Tree; destroy(treeId: number): this; }