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