import { VcComponentInternalInstance, VcComponentPublicInstance, VcReadyObject } from 'casc-cesium/es/utils/types'; export declare const cylinderOutlineGeometryProps: { numberOfVerticalLines: { type: import("vue").PropType>; default: number; }; slices: { type: import("vue").PropType>; default: number; }; bottomRadius: import("vue").PropType>; topRadius: import("vue").PropType>; length: import("vue").PropType>; }; declare const _default: import("vue").DefineComponent<{ numberOfVerticalLines: { type: import("vue").PropType>; default: number; }; slices: { type: import("vue").PropType>; default: number; }; bottomRadius: import("vue").PropType>; topRadius: import("vue").PropType>; length: import("vue").PropType>; }, () => 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; }; slices: { type: import("vue").PropType>; default: number; }; bottomRadius: import("vue").PropType>; topRadius: import("vue").PropType>; length: import("vue").PropType>; }>> & { 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; slices: number | Cesium.CallbackProperty | import("casc-cesium/es/utils/types").VcCallbackPropertyFunction; }>; export default _default; export declare type VcGeometryCylinderOutlineProps = { /** * The length of the cylinder. */ length: number; /** * The radius of the top of the cylinder. */ topRadius: number; /** * The radius of the bottom of the cylinder. */ bottomRadius: number; /** * The number of edges around the perimeter of the cylinder. * Default value: 128 */ slices?: number; /** * Number of lines to draw between the top and bottom surfaces of the cylinder. * Default value: 16 */ numberOfVerticalLines?: number; /** * Triggers before the VcGeometryCylinderOutline is loaded. */ onBeforeLoad?: (instance: VcComponentInternalInstance) => void; /** * Triggers when the VcGeometryCylinderOutline is successfully loaded. */ onReady?: (readyObject: VcReadyObject) => void; /** * Triggers when the component load failed. */ onUnready?: (e: any) => void; /** * Triggers when the VcGeometryCylinderOutline is destroyed. */ onDestroyed?: (instance: VcComponentInternalInstance) => void; }; export declare type VcGeometryCylinderOutlineRef = VcComponentPublicInstance;