import type { VcCallbackPropertyFunction, VcColor, VcComponentInternalInstance, VcComponentPublicInstance, VcDistanceDisplayCondition, VcMaterial, VcReadyObject } from 'casc-cesium/es/utils/types'; export declare const cylinderGraphicsProps: { distanceDisplayCondition: { type: import("vue").PropType; watcherOptions: { cesiumObjectBuilder: typeof import("casc-cesium/es/utils/cesium-helpers").makeDistanceDisplayCondition; }; }; shadows: import("vue").PropType>; slices: { type: import("vue").PropType>; default: number; }; numberOfVerticalLines: { type: import("vue").PropType>; default: number; }; outlineWidth: { type: import("vue").PropType>; default: number; }; outlineColor: { type: import("vue").PropType; default: string; watcherOptions: { cesiumObjectBuilder: typeof import("casc-cesium/es/utils/cesium-helpers").makeColor; }; }; outline: { type: import("vue").PropType>; default: boolean; }; material: { type: import("vue").PropType; default: string; watcherOptions: { cesiumObjectBuilder: typeof import("casc-cesium/es/utils/cesium-helpers").makeMaterial; }; }; fill: { type: import("vue").PropType>; default: boolean; }; heightReference: { type: import("vue").PropType>; }; bottomRadius: import("vue").PropType>; topRadius: import("vue").PropType>; length: import("vue").PropType>; show: { type: import("vue").PropType; default: boolean; }; }; declare const _default: import("vue").DefineComponent<{ distanceDisplayCondition: { type: import("vue").PropType; watcherOptions: { cesiumObjectBuilder: typeof import("casc-cesium/es/utils/cesium-helpers").makeDistanceDisplayCondition; }; }; shadows: import("vue").PropType>; slices: { type: import("vue").PropType>; default: number; }; numberOfVerticalLines: { type: import("vue").PropType>; default: number; }; outlineWidth: { type: import("vue").PropType>; default: number; }; outlineColor: { type: import("vue").PropType; default: string; watcherOptions: { cesiumObjectBuilder: typeof import("casc-cesium/es/utils/cesium-helpers").makeColor; }; }; outline: { type: import("vue").PropType>; default: boolean; }; material: { type: import("vue").PropType; default: string; watcherOptions: { cesiumObjectBuilder: typeof import("casc-cesium/es/utils/cesium-helpers").makeMaterial; }; }; fill: { type: import("vue").PropType>; default: boolean; }; heightReference: { type: import("vue").PropType>; }; bottomRadius: import("vue").PropType>; topRadius: import("vue").PropType>; length: import("vue").PropType>; show: { type: import("vue").PropType; default: boolean; }; }, () => import("vue").VNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { definitionChanged: (property: Cesium.Property) => boolean; 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; watcherOptions: { cesiumObjectBuilder: typeof import("casc-cesium/es/utils/cesium-helpers").makeDistanceDisplayCondition; }; }; shadows: import("vue").PropType>; slices: { type: import("vue").PropType>; default: number; }; numberOfVerticalLines: { type: import("vue").PropType>; default: number; }; outlineWidth: { type: import("vue").PropType>; default: number; }; outlineColor: { type: import("vue").PropType; default: string; watcherOptions: { cesiumObjectBuilder: typeof import("casc-cesium/es/utils/cesium-helpers").makeColor; }; }; outline: { type: import("vue").PropType>; default: boolean; }; material: { type: import("vue").PropType; default: string; watcherOptions: { cesiumObjectBuilder: typeof import("casc-cesium/es/utils/cesium-helpers").makeMaterial; }; }; fill: { type: import("vue").PropType>; default: boolean; }; heightReference: { type: import("vue").PropType>; }; bottomRadius: import("vue").PropType>; topRadius: import("vue").PropType>; length: import("vue").PropType>; show: { type: import("vue").PropType; default: boolean; }; }>> & { onBeforeLoad?: (instance: VcComponentInternalInstance) => any; onReady?: (readyObj: VcReadyObject) => any; onUnready?: (e: any) => any; onDestroyed?: (instance: VcComponentInternalInstance) => any; onDefinitionChanged?: (property: Cesium.Property) => any; }, { fill: boolean | Cesium.CallbackProperty | VcCallbackPropertyFunction; show: boolean; material: VcMaterial; outline: boolean | Cesium.CallbackProperty | VcCallbackPropertyFunction; outlineColor: VcColor; outlineWidth: number | Cesium.CallbackProperty | VcCallbackPropertyFunction; numberOfVerticalLines: number | Cesium.CallbackProperty | VcCallbackPropertyFunction; slices: number | Cesium.CallbackProperty | VcCallbackPropertyFunction; }>; export default _default; export declare type VcGraphicsCylinderProps = { /** * A boolean Property specifying the visibility of the corridor. * Default value: true */ show?: boolean | Cesium.CallbackProperty | VcCallbackPropertyFunction; /** * A numeric Property specifying the length of the cylinder. */ length?: number | Cesium.CallbackProperty | VcCallbackPropertyFunction; /** * A numeric Property specifying the radius of the top of the cylinder. */ topRadius?: number | Cesium.CallbackProperty | VcCallbackPropertyFunction; /** * A numeric Property specifying the radius of the bottom of the cylinder. */ bottomRadius?: number | Cesium.CallbackProperty | VcCallbackPropertyFunction; /** * A Property specifying what the height from the entity position is relative to. * Default value: HeightReference.NONE */ heightReference?: number | Cesium.HeightReference | Cesium.CallbackProperty | VcCallbackPropertyFunction; /** * A boolean Property specifying whether the cylinder is filled with the provided material. * Default value: true */ fill?: boolean | Cesium.CallbackProperty | VcCallbackPropertyFunction; /** * A Property specifying the material used to fill the cylinder. * Default value: white */ material?: VcMaterial; /** * A boolean Property specifying whether the cylinder is outlined. * Default value: false */ outline?: boolean | Cesium.CallbackProperty | VcCallbackPropertyFunction; /** * A Property specifying the Color of the outline. * Default value: black */ outlineColor?: VcColor; /** * A numeric Property specifying the width of the outline. * Default value: 1.0 */ outlineWidth?: number | Cesium.CallbackProperty | VcCallbackPropertyFunction; /** * A numeric Property specifying the number of vertical lines to draw along the perimeter for the outline. * Default value: 16 */ numberOfVerticalLines?: number | Cesium.CallbackProperty | VcCallbackPropertyFunction; /** * The number of edges around the perimeter of the cylinder. * Default value: 128 */ slices?: number | Cesium.CallbackProperty | VcCallbackPropertyFunction; /** * An enum Property specifying whether the corridor casts or receives shadows from light sources. * Default value: Cesium.ShadowMode.DISABLED */ shadows?: number | Cesium.ShadowMode | Cesium.CallbackProperty | VcCallbackPropertyFunction; /** * A Property specifying at what distance from the camera that this corridor will be displayed. */ distanceDisplayCondition?: VcDistanceDisplayCondition; /** * Triggers before the VcGraphicsCylinder is loaded. */ onBeforeLoad?: (instance: VcComponentInternalInstance) => void; /** * Triggers when the VcGraphicsCylinder is successfully loaded. */ onReady?: (readyObject: VcReadyObject) => void; /** * Triggers when the component load failed. */ onUnready?: (e: any) => void; /** * Triggers when the VcGraphicsCylinder is destroyed. */ onDestroyed?: (instance: VcComponentInternalInstance) => void; /** * Triggers when a property or sub-property is changed or modified. */ onDefinitionChanged?: (property: Cesium.Property) => void; }; export declare type VcGraphicsCylinderRef = VcComponentPublicInstance;