import { Tree } from './tree.model'; export declare class Leaf { value: string | number; label: string; data?: any; constructor(tree: Tree); }