import React from 'react'; interface Props { name: string; extra?: string; parentPath?: string; level?: number; className?: string; } declare const defaultProps: { level: number; className: string; parentPath: string; }; type NativeAttrs = Omit, keyof Props>; export type TreeLeafProps = Props & typeof defaultProps & NativeAttrs; declare const _default: React.ComponentType & Omit, "className" | "parentPath" | "level">>; export default _default;