import { CustomDiv, ESSceneObject, PickedInfo } from 'vtxf-xe2/dist-node/xe2-base-objects'; import { Event, Listener, PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from 'vtxf-xe2/dist-node/xe2-base-utils'; import { SceneObjectKey } from 'vtxf-xe2/dist-node/xe2-utils'; export declare class MyStatusBar extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { show: boolean; text: string; color: string; fontSize: string; containerId: 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 _pickedEvent; get pickedEvent(): Event<[PickedInfo]>; private _flyToEvent; get flyToEvent(): Listener<[number | undefined]>; flyTo(duration?: number): void; static defaults: { viewerTagsEnums: [string, string][]; }; private _customDiv; get customDiv(): CustomDiv<{ destroy(): undefined; }>; get container(): HTMLElement | undefined; set container(value: HTMLElement | undefined); get containerChanged(): Listener<[HTMLElement | undefined, HTMLElement | undefined]>; constructor(id?: SceneObjectKey); getProperties(language?: string): import("vtxf-xe2/dist-node/xe2-base-objects").Property[]; } export declare namespace MyStatusBar { const createDefaultProps: () => { show: boolean; text: string; color: string; fontSize: string; containerId: 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 MyStatusBar extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};