/// <reference types="react" />
import * as React from 'react';
export interface TreeProps {
    tree: Array<any>;
    onClick: (string) => any;
}
export interface TreeState {
    currentActiveId: Number;
}
export declare class Tree extends React.Component<TreeProps, TreeState> {
    constructor(props: TreeProps);
    static defaultProps: TreeProps;
    _toDOM(tree: any): JSX.Element;
    render(): JSX.Element;
}
export default Tree;
