import { VcComponentInternalInstance, VcComponentPublicInstance, VcPosition, VcReadyObject } from 'casc-cesium/es/utils/types'; export declare const circleOutlineGeometryProps: { numberOfVerticalLines: { type: import("vue").PropType>; default: number; }; extrudedHeight: import("vue").PropType>; granularity: import("vue").PropType>; height: import("vue").PropType>; ellipsoid: import("vue").PropType; radius: NumberConstructor; center: { type: import("vue").PropType; watcherOptions: { cesiumObjectBuilder: typeof import("casc-cesium/es/utils/cesium-helpers").makeCartesian3; }; }; }; declare const _default: import("vue").DefineComponent<{ numberOfVerticalLines: { type: import("vue").PropType>; default: number; }; extrudedHeight: import("vue").PropType>; granularity: import("vue").PropType>; height: import("vue").PropType>; ellipsoid: import("vue").PropType; radius: NumberConstructor; center: { type: import("vue").PropType; watcherOptions: { cesiumObjectBuilder: typeof import("casc-cesium/es/utils/cesium-helpers").makeCartesian3; }; }; }, () => 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; }; extrudedHeight: import("vue").PropType>; granularity: import("vue").PropType>; height: import("vue").PropType>; ellipsoid: import("vue").PropType; radius: NumberConstructor; center: { type: import("vue").PropType; watcherOptions: { cesiumObjectBuilder: typeof import("casc-cesium/es/utils/cesium-helpers").makeCartesian3; }; }; }>> & { onBeforeLoad?: (instance: VcComponentInternalInstance) => any; onReady?: (readyObj: VcReadyObject) => any; onUnready?: (e: any) => any; onDestroyed?: (instance: VcComponentInternalInstance) => any; }, { numberOfVerticalLines: number | Cesium.CallbackProperty | import("casc-cesium/es/utils/types").VcCallbackPropertyFunction; }>; export default _default; export declare type VcGeometryCircleOutlineProps = { /** * The circle's center point in the fixed frame. */ center: VcPosition; /** * The radius in meters. */ radius?: number; /** * The ellipsoid the circle will be on. */ ellipsoid?: Cesium.Ellipsoid; /** * The distance in meters between the circle and the ellipsoid surface. */ height?: number; /** * The angular distance between points on the circle in radians. */ granularity?: number; /** * The distance in meters between the circle's extruded face and the ellipsoid surface. */ extrudedHeight?: number; /** * Number of lines to draw between the top and bottom of an extruded circle. * Default value: 16 */ numberOfVerticalLines?: number; /** * Triggers before the VcGeometryCircleOutline is loaded. */ onBeforeLoad?: (instance: VcComponentInternalInstance) => void; /** * Triggers when the VcGeometryCircleOutline is successfully loaded. */ onReady?: (readyObject: VcReadyObject) => void; /** * Triggers when the component load failed. */ onUnready?: (e: any) => void; /** * Triggers when the VcGeometryCircleOutline is destroyed. */ onDestroyed?: (instance: VcComponentInternalInstance) => void; }; export declare type VcGeometryCircleOutlineRef = VcComponentPublicInstance;