import type { ViewerNodeV1 } from '@xyo-network/payload-viewer-protocol'; import type { FC } from 'react'; import type { NativeViewerActionV1 } from './types.js'; /** Props for {@link NativeViewerTree}. */ export interface NativeViewerTreeProps { node: ViewerNodeV1; onAction: (action: NativeViewerActionV1) => void; } /** Maps validated semantic nodes to host-owned React and MUI components. */ export declare const NativeViewerTree: FC; //# sourceMappingURL=NativeViewerTree.d.ts.map