import React from "react"; import { TreeNodeProps } from "./TreeProps"; export declare const TreeActionLink: React.ForwardRefExoticComponent & React.RefAttributes>; export interface TreeNodeInnerProps { /** * 深度 */ level?: number; /** * 包含完整路径的 id 串 */ pathKey?: string; } export declare const TreeNode: React.FunctionComponent> & { ActionLink: React.ForwardRefExoticComponent & React.RefAttributes>; };