import React from 'react'; import { TreeEntry, TreePath } from './types'; export interface TreeListProps { items: TreeEntry[]; path: TreePath; role?: 'group' | 'tree'; } export declare const TreeList: React.FC;