import m from 'mithril'; import { IAttrs } from '../../_shared'; export interface ITreeAttrs extends IAttrs { /** An array of child nodes */ nodes?: m.Vnode[]; [htmlAttrs: string]: any; } export declare class Tree implements m.Component { view({ attrs }: m.Vnode): m.Vnode; }