import { ProjectManager } from 'vtxf-xe2/dist-node/xe2'; import { ESSceneObject, Viewer } from 'vtxf-xe2/dist-node/xe2-base-objects'; import { Event, PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from 'vtxf-xe2/dist-node/xe2-base-utils'; import { CzmViewer } from 'vtxf-xe2/dist-node/xe2-cesium-objects'; import { SceneObjectKey } from 'vtxf-xe2/dist-node/xe2-utils'; import { MySceneObjectPickedResultType } from './PickedResultType'; export declare type OnPickedResultFuncType = (pickedResult: MySceneObjectPickedResultType | undefined) => void; export declare class MySceneObjectPicking extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { enabled: boolean; enableClick: boolean; enableHover: boolean; hoverDelayTime: number; showClickedProps: boolean; showHoveredProps: boolean; filterHoveredProps: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; filterClickedProps: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; clickedPropsFuncStr: string; hoveredPropsFuncStr: string; enableFeatureColor: boolean; hoveredColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; clickedColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; clickedAndHoveredColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; onPickedResultFuncStr: 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); flyTo(duration?: number): void; static defaults: { viewerTagsEnums: [string, string][]; }; getDefaultViewer(): CzmViewer | undefined; getProjectManager(): ProjectManager | undefined; private _pickFunc; static hoverSymbol: symbol; static clickSymbol: symbol; pick(windowPos: [number, number], viewer?: Viewer, symbol?: Symbol): Promise; hoverPick(windowPos: [number, number], viewer?: Viewer): Promise; clickPick(windowPos: [number, number], viewer?: Viewer): Promise; private _pickedResultEvent; get pickedResultEvent(): Event<[pickedResult: MySceneObjectPickedResultType | undefined]>; private _onPickedResultFunc; get onPickedResultFunc(): OnPickedResultFuncType | undefined; set onPickedResultFunc(value: OnPickedResultFuncType | undefined); get onPickedResultFuncChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[OnPickedResultFuncType | undefined, OnPickedResultFuncType | undefined]>; private _onPickedResultFuncInit; private _hoveredProps; get hoveredProps(): [string, string][] | undefined; set hoveredProps(value: [string, string][] | undefined); get hoveredPropsChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[[string, string][] | undefined, [string, string][] | undefined]>; private _clickedProps; get clickedProps(): [string, string][] | undefined; set clickedProps(value: [string, string][] | undefined); get clickedPropsChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[[string, string][] | undefined, [string, string][] | undefined]>; private _enabledResetting; private _setCzm3DTilesFeatureColorResetting; private _showHoveredPropsResetting; private _showClickedPropsResetting; constructor(id?: SceneObjectKey); getProperties(language?: string): import("vtxf-xe2/dist-node/xe2-base-objects").Property[]; } export declare namespace MySceneObjectPicking { const createDefaultProps: () => { enabled: boolean; enableClick: boolean; enableHover: boolean; hoverDelayTime: number; showClickedProps: boolean; showHoveredProps: boolean; filterHoveredProps: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; filterClickedProps: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; clickedPropsFuncStr: string; hoveredPropsFuncStr: string; enableFeatureColor: boolean; hoveredColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; clickedColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; clickedAndHoveredColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; onPickedResultFuncStr: 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 MySceneObjectPicking extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};