import { ESSceneObject } from 'vtxf-xe2/dist-node/xe2-base-objects'; import { Event, PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from 'vtxf-xe2/dist-node/xe2-base-utils'; import { CzmImageModel } from 'vtxf-xe2/dist-node/xe2-cesium-objects'; import { SceneObjectKey } from 'vtxf-xe2/dist-node/xe2-utils'; import { LayoutDiv } from '../LayoutDiv'; import { MyCustomDivLayoutType } from '../MyCustomDiv'; export declare class MyLocation extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { show: boolean; 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; showPoi: boolean; clickFuncStr: 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 _layoutDiv; get layoutDiv(): LayoutDiv; static defaultSize: { width: string; height: string; }; static defaults: { viewerTagsEnums: [string, string][]; }; get container(): HTMLElement | undefined; set container(value: HTMLElement | undefined); private _clickEvent; get clickEvent(): Event<[mouseEvent: MouseEvent]>; private _clickFunc; get clickFunc(): ((mouseEvent: MouseEvent) => void) | undefined; set clickFunc(value: ((mouseEvent: MouseEvent) => void) | undefined); get clickFuncChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[((mouseEvent: MouseEvent) => void) | undefined, ((mouseEvent: MouseEvent) => void) | undefined]>; private _clickFuncInit; private _czmImageModel; private _czmImageModelInit; get czmImageModel(): CzmImageModel; static defaultClickFuncStrMd: string; constructor(id?: SceneObjectKey); get finalCssText(): string; get finalCssTextChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[string, string]>; getProperties(language?: string): import("vtxf-xe2/dist-node/xe2-base-objects").Property[]; } export declare namespace MyLocation { const createDefaultProps: () => { show: boolean; 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; showPoi: boolean; clickFuncStr: 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 MyLocation extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};