import { type IxTreeCustomEvent, type TreeContext } from '@siemens/ix'; import { IxTree as IxTreeElement } from '@siemens/ix/components/ix-tree.js'; import { type EventName, type StencilReactComponent } from '@stencil/react-output-target/runtime'; type IxTreeEvents = { onContextChange: EventName>; onNodeToggled: EventName>; onNodeClicked: EventName>; onNodeRemoved: EventName>; }; declare const InternalIxTree: StencilReactComponent; export default InternalIxTree;