import React from 'react'; import type { TreeItemProps } from './types'; /** * Recursive tree item component. Renders a `TreeItemRow` and, when the item * has children, an animated-height container that expands/collapses. * * All Reanimated animation code runs on the UI thread only — no `runOnJS`. */ export declare function TreeItem({ itemId, label, disabled, children, style, testID, }: TreeItemProps): React.ReactElement; //# sourceMappingURL=TreeItem.d.ts.map