import { CzmMaterialJsonType, ESSceneObject, PolygonHierarchyType } from "xbsj-xe2/dist-node/xe2-base-objects"; import { PickedInfo } from "xbsj-xe2/dist-node/xe2-base-objects"; import { Event, JsonValue, Listener, PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from "xbsj-xe2/dist-node/xe2-base-utils"; import { SceneObjectKey } from "xbsj-xe2/dist-node/xe2-utils"; export declare class CzmPolygonGroundPrimitive 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; show: boolean; allowPicking: boolean; arcType: "NONE" | "GEODESIC" | "RHUMB"; material: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; stRotation: number; polygonHierarchy: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; height: number | undefined; extrudedHeight: number | undefined; ellipsoid: [x: number, y: number, z: number] | undefined; granularity: number; perPositionHeight: boolean; closeTop: boolean; closeBottom: boolean; }; get json(): JsonType; set json(value: JsonType); get geoJson(): JsonValue; set geoJson(value: JsonValue); get geoJsonStr(): string; set geoJsonStr(value: string); private _pickedEvent; get pickedEvent(): Event<[PickedInfo]>; private _flyToEvent; get flyToEvent(): Listener<[number | undefined]>; flyTo(duration?: number): void; constructor(id?: SceneObjectKey); getProperties(language?: string): import("xbsj-xe2/dist-node/xe2-base-objects").Property[]; } export declare namespace CzmPolygonGroundPrimitive { 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; show: boolean; allowPicking: boolean; arcType: "NONE" | "GEODESIC" | "RHUMB"; material: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; stRotation: number; polygonHierarchy: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; height: number | undefined; extrudedHeight: number | undefined; ellipsoid: [x: number, y: number, z: number] | undefined; granularity: number; perPositionHeight: boolean; closeTop: boolean; closeBottom: boolean; }; } export interface CzmPolygonGroundPrimitive extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};