import { ESSceneObject } from 'vtxf-xe2/dist-node/xe2-base-objects'; import { Event, JsonValue, ObservableArray, PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from 'vtxf-xe2/dist-node/xe2-base-utils'; import { SceneObjectKey } from 'vtxf-xe2/dist-node/xe2-utils'; import { MyCustomDivLayoutType } from '../MyCustomDiv'; import { MySceneTreeUi } from '../MySceneTreeUi'; export declare type MyTreeItemContentJsonType = { type: 'sceneObjJson'; sceneObjJson: JsonValue; } | { type: 'sceneObjJsonUri'; sceneObjJsonUri: string; } | { type: 'm3toJson'; m3toJson: JsonValue; } | { type: 'm3toJsonUri'; m3toJsonUri: string; } | { type: 'm3tJson'; m3tJson: JsonValue; } | { type: 'm3tJsonUri'; m3tJsonUri: string; } | { type: 'script'; script: string; } | { type: 'scriptUri'; scriptUri: string; }; export declare type MyTreeItemJsonType = { name: string; collapsed?: boolean; previewImageUri?: string; content?: MyTreeItemContentJsonType; children?: MyTreeItemJsonType[]; }; export declare type MyTreeItemType = { name: string; extras?: { sceneObjJson?: JsonValue; jsonContentUri?: string; funcStr?: string; content?: { type: 'sceneObjJson'; sceneObjJson: JsonValue; } | { type: 'sceneObjJsonUri'; sceneObjJsonUri: string; } | { type: 'm3toJson'; m3toJson: JsonValue; } | { type: 'm3toJsonUri'; m3toJsonUri: string; } | { type: 'm3tJson'; m3tJson: JsonValue; } | { type: 'm3tJsonUri'; m3tJsonUri: string; }; }; children?: ObservableArray; }; export declare class MyTreeUi extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { show: boolean; createAttachedObjFuncStr: string; containerId: string | null; visibility: boolean; interaction: boolean; shadowDom: boolean; cssAllInitial: boolean; zIndex: number | undefined; layoutType: MyCustomDivLayoutType; width: number; height: number; backgroundColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number] | null>; color: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number] | null>; cssText: string; items: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; execOnceFuncStr: string; updateFuncStr: string; toDestroyFuncStr: string; createAppendedObjFuncStr: string; name: string; ref: string | undefined; devTags: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; }; get json(): JsonType; set json(value: JsonType); static sampleItems: MyTreeItemJsonType[]; private _dbclickEvent; get dbclickEvent(): Event<[myTreeItem: MyTreeItemType, mouseEvent: MouseEvent]>; private _lastSelectedItem; get lastSelectedItem(): MyTreeItemType | undefined; set lastSelectedItem(value: MyTreeItemType | undefined); get lastSelectedItemChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[MyTreeItemType | undefined, MyTreeItemType | undefined]>; private _hoveredItem; get hoveredItem(): MyTreeItemType | undefined; set hoveredItem(value: MyTreeItemType | undefined); get hoveredItemChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[MyTreeItemType | undefined, MyTreeItemType | undefined]>; private _mySceneTreeUi; get mySceneTreeUi(): MySceneTreeUi; get div(): HTMLDivElement; flushCss(): void; static defaults: { viewerTagsEnums: [string, string][]; }; get container(): HTMLElement | undefined; set container(value: HTMLElement | undefined); get finalCssText(): string; get finalCssTextChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[string, string]>; setSampleItems(): void; constructor(id?: SceneObjectKey); getProperties(language?: string): import("vtxf-xe2/dist-node/xe2-base-objects").Property[]; } export declare namespace MyTreeUi { const createDefaultProps: () => { show: boolean; createAttachedObjFuncStr: string; containerId: string | null; visibility: boolean; interaction: boolean; shadowDom: boolean; cssAllInitial: boolean; zIndex: number | undefined; layoutType: MyCustomDivLayoutType; width: number; height: number; backgroundColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number] | null>; color: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number] | null>; cssText: string; items: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; execOnceFuncStr: string; updateFuncStr: string; toDestroyFuncStr: string; createAppendedObjFuncStr: string; name: string; ref: string | undefined; devTags: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; }; } export interface MyTreeUi extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};