import { ESSceneObject, GeoCoordinatesPicker } from 'vtxf-xe2/dist-node/xe2-base-objects'; import { Event, PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from 'vtxf-xe2/dist-node/xe2-base-utils'; import { SceneObjectKey } from 'vtxf-xe2/dist-node/xe2-utils'; export declare class GeoPointerCreator extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { enabled: boolean; continous: boolean; 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 _cursorInfo; private _cursorInfoInit; private _geoCoordinatesPicker; private _geoCoordinatesPickerInit; get geoCoordinatesPicker(): GeoCoordinatesPicker; private _createdEvent; get createdEvent(): Event<[position: [number, number, number]]>; private _creatingProcessing; private _creatingProcessingInit; private _interactionInit; static defaults: { viewerTagsEnums: [string, string][]; }; constructor(id?: SceneObjectKey); getProperties(language?: string): import("vtxf-xe2/dist-node/xe2-base-objects").Property[]; } export declare namespace GeoPointerCreator { const createDefaultProps: () => { enabled: boolean; continous: boolean; 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 GeoPointerCreator extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};