///
export interface TreeViewItem {
id: string;
label?: string;
items?: TreeViewItem[];
}
export interface TreeViewProps {
items?: TreeViewItem[];
selected?: string;
expanded?: string[];
onCreate?: (tree_selector?: string) => void;
onSelect?: (tree_selector: string) => void;
onExpansion?: (expanded: string[]) => void;
className?: string;
}
export declare const BaseTreeView: React.FC;
export declare const TreeView: import("styled-components").StyledComponent, any, {}, never>;