export * from '@platform/ui.tree/lib/types'; export * from '@platform/ui.text/lib/types'; export * from '@platform/ui.button/lib/types'; export * from '@platform/ui.icon/lib/types'; export * from '../types'; import * as t from '../types'; import { ITreeviewNode, ITreeNodePropsTreeview } from '@platform/ui.tree/lib/types'; declare type P = ITreeNodePropsTreeview & { data?: IPropNodeData; }; export declare type IPropNode = ITreeviewNode

; export declare type IPropNodeData = { path: string; key: string | number; value: t.PropValue; type: t.PropType; parentType?: t.PropType; action?: t.PropChangeAction; isDeletable?: boolean; };