import React from 'react'; import { TreeNodeId, TreeProps, TreeSelectable } from '../Tree'; export interface StatefulTreeProps extends Omit, 'expandable' | 'focusable' | 'selectable' | 'onKeyDown'> { defaultExpanded?: TreeNodeId[]; defaultSelected?: TreeNodeId[]; iconless?: boolean; selectable?: TreeSelectable['type']; onExpandedChange?: (expandedNodes: TreeNodeId[]) => void; onSelectionChange?: (selectedValues: T[]) => void; } export declare const StatefulTree: ({ nodes, defaultExpanded, defaultSelected, disabledNodes, iconless, onNodeClick, onExpandedChange, onSelectionChange, selectable: type, }: StatefulTreeProps) => React.ReactElement>; //# sourceMappingURL=StatefulTree.d.ts.map