import React from 'react';
export type TreeNodeProps = {
title: string;
content?: string;
link?: string;
onClick: (data: any) => void;
onExpand: (title: string, isFolded: boolean) => void;
children: any[];
};
export declare const TreeNode: (props: TreeNodeProps) => React.JSX.Element;