import { Listener, Event, PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from "xbsj-xe2/dist-node/xe2-base-utils"; import { SceneObjectKey } from "xbsj-xe2/dist-node/xe2-utils"; import { ESSceneObject } from "xbsj-xe2/dist-node/xe2-base-objects"; export declare type ApplyCurrentConfig = { distance?: boolean; pitch?: boolean; }; export declare class CzmFlyAround extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { 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; enabled: boolean; position: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number] | undefined>; positionEditing: boolean | undefined; showTarget: boolean | undefined; stopRadius: number | undefined; stopPitch: number | undefined; flyToDuration: number | undefined; aroundSpeed: number | undefined; placeCenter: boolean | undefined; }; get json(): JsonType; set json(value: JsonType); private _flyToEvent; get flyToEvent(): Listener<[number | undefined]>; flyTo(duration?: number): void; static defaults: { position: [number, number, number]; positionEditing: boolean; showTarget: boolean; stopRadius: number; stopPitch: number; flyToDuration: number; aroundSpeed: number; placeCenter: boolean; viewerTagsEnums: [string, string][]; }; constructor(id?: SceneObjectKey); getProperties(language?: string): import("xbsj-xe2/dist-node/xe2-base-objects").Property[]; private _applyCurrentEvent; get applyCurrentEvent(): Event<[config: ApplyCurrentConfig]>; /** * 将当前视距应用到stopRadius属性上 */ applyCurrentDistance(): void; /** * 将当前俯仰角应用到stopPitch属性上 */ applyCurrentPitch(): void; } export declare namespace CzmFlyAround { const createDefaultProps: () => { 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; enabled: boolean; position: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number] | undefined>; positionEditing: boolean | undefined; showTarget: boolean | undefined; stopRadius: number | undefined; stopPitch: number | undefined; flyToDuration: number | undefined; aroundSpeed: number | undefined; placeCenter: boolean | undefined; }; } export interface CzmFlyAround extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};