import { CustomDiv, ESSceneObject } from "vtxf-xe2/dist-node/xe2-base-objects"; import { PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from "vtxf-xe2/dist-node/xe2-base-utils"; export declare class MyMessageBox extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { show: boolean; title: string; content: string; 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); private _customDiv; private _customDivInit; get customDiv(): CustomDiv<{ destroy(): undefined; }>; constructor(id?: string); static defaults: { position: [number, number, number]; positionEditing: boolean; debugColorizeTiles: boolean; debugWireframe: boolean; debugShowBoundingVolume: boolean; debugShowContentBoundingVolume: boolean; debugShowViewerRequestVolume: boolean; debugShowGeometricError: boolean; debugShowRenderingStatistics: boolean; debugShowMemoryUsage: boolean; debugShowUrl: boolean; skipLevelOfDetail: boolean; viewerTagsEnums: [string, string][]; }; getProperties(language?: string): import("vtxf-xe2/dist-node/xe2-base-objects").Property[]; } export declare namespace MyMessageBox { const createDefaultProps: () => { show: boolean; title: string; content: string; 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 MyMessageBox extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};