import { CzmCustomPrimitive } from '../../base-objects'; import { ESSceneObject, PickedInfo } from "xbsj-xe2/dist-node/xe2-base-objects"; import { Event, Listener, PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from "xbsj-xe2/dist-node/xe2-base-utils"; export declare class CzmCityBasePoint extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { show: boolean | undefined; position: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number] | undefined>; positionEditing: boolean | undefined; scale: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number] | undefined>; color: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number] | undefined>; allowPicking: boolean | undefined; execOnceFuncStr: string | undefined; updateFuncStr: string | undefined; toDestroyFuncStr: string | undefined; name: string; ref: string | undefined; devTags: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; }; get json(): JsonType; set json(value: JsonType); private _flyToEvent; get flyToEvent(): Listener<[number | undefined]>; flyTo(duration?: number): void; private _pickedEvent; get pickedEvent(): Event<[PickedInfo]>; private _circleCustomPrimitive; get circleCustomPrimitive(): CzmCustomPrimitive; private _cylinderCustomPrimitive; get cylinderCustomPrimitive(): CzmCustomPrimitive; private _cylinderParticlesCustomPrimitive; get cylinderParticlesCustomPrimitive(): CzmCustomPrimitive; static defaultParticlesImageUri: string; constructor(id?: string); getProperties(language?: string): import("xbsj-xe2/dist-node/xe2-base-objects").Property[]; } declare const extraComponentProps: {}; export declare namespace CzmCityBasePoint { const createDefaultProps: () => { show: boolean | undefined; position: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number] | undefined>; positionEditing: boolean | undefined; scale: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number] | undefined>; color: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number] | undefined>; allowPicking: boolean | undefined; execOnceFuncStr: string | undefined; updateFuncStr: string | undefined; toDestroyFuncStr: string | undefined; name: string; ref: string | undefined; devTags: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; }; } export interface CzmCityBasePoint extends ReactivePropsToNativePropsAndChanged & typeof extraComponentProps> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & typeof extraComponentProps & { type: string; }>; export {};