import { VcComponentInternalInstance, VcComponentPublicInstance, VcPolygonHierarchy, VcReadyObject } from 'casc-cesium/es/utils/types'; export declare const polygonGeometryProps: { arcType: { type: import("vue").PropType>; default: number; }; closeBottom: { type: import("vue").PropType>; default: boolean; }; closeTop: { type: import("vue").PropType>; default: boolean; }; perPositionHeight: { type: import("vue").PropType>; default: boolean; }; granularity: import("vue").PropType>; ellipsoid: import("vue").PropType; stRotation: { type: import("vue").PropType>; default: number; }; vertexFormat: import("vue").PropType; extrudedHeight: import("vue").PropType>; height: import("vue").PropType>; polygonHierarchy: { type: import("vue").PropType; watcherOptions: { cesiumObjectBuilder: typeof import("casc-cesium/es/utils/cesium-helpers").makePolygonHierarchy; deep: boolean; }; }; }; declare const _default: import("vue").DefineComponent<{ arcType: { type: import("vue").PropType>; default: number; }; closeBottom: { type: import("vue").PropType>; default: boolean; }; closeTop: { type: import("vue").PropType>; default: boolean; }; perPositionHeight: { type: import("vue").PropType>; default: boolean; }; granularity: import("vue").PropType>; ellipsoid: import("vue").PropType; stRotation: { type: import("vue").PropType>; default: number; }; vertexFormat: import("vue").PropType; extrudedHeight: import("vue").PropType>; height: import("vue").PropType>; polygonHierarchy: { type: import("vue").PropType; watcherOptions: { cesiumObjectBuilder: typeof import("casc-cesium/es/utils/cesium-helpers").makePolygonHierarchy; deep: boolean; }; }; }, () => import("vue").VNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { beforeLoad: (instance: VcComponentInternalInstance) => boolean; ready: (readyObj: VcReadyObject) => boolean; unready: (e: any) => boolean; destroyed: (instance: VcComponentInternalInstance) => boolean; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; default: number; }; closeBottom: { type: import("vue").PropType>; default: boolean; }; closeTop: { type: import("vue").PropType>; default: boolean; }; perPositionHeight: { type: import("vue").PropType>; default: boolean; }; granularity: import("vue").PropType>; ellipsoid: import("vue").PropType; stRotation: { type: import("vue").PropType>; default: number; }; vertexFormat: import("vue").PropType; extrudedHeight: import("vue").PropType>; height: import("vue").PropType>; polygonHierarchy: { type: import("vue").PropType; watcherOptions: { cesiumObjectBuilder: typeof import("casc-cesium/es/utils/cesium-helpers").makePolygonHierarchy; deep: boolean; }; }; }>> & { onBeforeLoad?: (instance: VcComponentInternalInstance) => any; onReady?: (readyObj: VcReadyObject) => any; onUnready?: (e: any) => any; onDestroyed?: (instance: VcComponentInternalInstance) => any; }, { stRotation: number | Cesium.CallbackProperty | import("casc-cesium/es/utils/types").VcCallbackPropertyFunction; arcType: number | Cesium.CallbackProperty | import("casc-cesium/es/utils/types").VcCallbackPropertyFunction; closeBottom: boolean | Cesium.CallbackProperty | import("casc-cesium/es/utils/types").VcCallbackPropertyFunction; closeTop: boolean | Cesium.CallbackProperty | import("casc-cesium/es/utils/types").VcCallbackPropertyFunction; perPositionHeight: boolean | Cesium.CallbackProperty | import("casc-cesium/es/utils/types").VcCallbackPropertyFunction; }>; export default _default; export declare type VcGeometryPolygonProps = { /** * A polygon hierarchy that can include holes. */ polygonHierarchy: VcPolygonHierarchy; /** * The distance in meters between the polygon and the ellipsoid surface. */ height?: number; /** * The distance in meters between the polygon's extruded face and the ellipsoid surface. */ extrudedHeight?: number; /** * The vertex attributes to be computed. */ vertexFormat?: Cesium.VertexFormat; /** * The rotation of the texture coordinates, in radians. A positive rotation is counter-clockwise. * Default value: 0.0 */ stRotation?: number; /** * The ellipsoid to be used as a reference. */ ellipsoid?: Cesium.Ellipsoid; /** * The distance, in radians, between each latitude and longitude. Determines the number of positions in the buffer. */ granularity?: number; /** * Use the height of options.positions for each position instead of using options.height to determine the height. * Default value: false */ perPositionHeight?: boolean; /** * When false, leaves off the top of an extruded polygon open. * Default value: true */ closeTop?: boolean; /** * When false, leaves off the bottom of an extruded polygon open. * Default value: true */ closeBottom?: boolean; /** * The type of line the polygon edges must follow. Valid options are ArcType.GEODESIC and ArcType.RHUMB. */ arcType?: number | Cesium.ArcType; /** * Triggers before the VcGeometryPolygon is loaded. */ onBeforeLoad?: (instance: VcComponentInternalInstance) => void; /** * Triggers when the VcGeometryPolygon is successfully loaded. */ onReady?: (readyObject: VcReadyObject) => void; /** * Triggers when the component load failed. */ onUnready?: (e: any) => void; /** * Triggers when the VcGeometryPolygon is destroyed. */ onDestroyed?: (instance: VcComponentInternalInstance) => void; }; export declare type VcGeometryPolygonRef = VcComponentPublicInstance;