import React from 'react'; import type { TreeViewContextValue, SimpleTreeViewProps } from './types'; export declare const TreeViewContext: React.Context; /** * `SimpleTreeView` — context provider for a hierarchical tree structure. * * Supports controlled and uncontrolled modes for both expand and select state. * Children should be composed of `` elements. * * @RN-DEVIATION Keyboard navigation is touch-first; keyboard events are shimmed * via `accessibilityActions` — no native keyboard traversal equivalent. */ export declare function SimpleTreeView({ children, multiSelect, checkboxSelection, defaultExpandedItems, expandedItems: expandedItemsProp, onExpandedItemsChange, selectedItems: selectedItemsProp, onSelectedItemsChange, disabledItems, style, testID, }: SimpleTreeViewProps): React.ReactElement; //# sourceMappingURL=SimpleTreeView.d.ts.map