import React from 'react';
interface TreeItemProps {
    label?: string;
    value?: any;
    children?: any;
    passedKey: string;
    onTreeItemClick: (key: any, currentValue: any) => void;
}
declare const TreeItem: React.FC<TreeItemProps>;
export { TreeItem };
