import ITree from "../../interface/ITree"; import Model from "../Model"; export default class Tree extends Model implements ITree { static componentName: string; static defaults: Partial>; static schema: Required>; constructor(); private _preset; get preset(): string; set preset(val: string); }