import { PropType } from 'vue'; import type { VcComponentInternalInstance, VcComponentPublicInstance, VcReadyObject } from 'casc-cesium/es/utils/types'; export declare const arcgisTerrainProviderProps: { token: StringConstructor; ellipsoid: PropType; url: { type: PropType; default: string; }; }; declare const _default: import("vue").DefineComponent<{ token: StringConstructor; ellipsoid: PropType; url: { type: PropType; default: string; }; }, () => import("vue").VNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { errorEvent: (evt: Cesium.TileProviderError) => boolean; readyPromise: (evt: boolean | import("casc-cesium/es/utils/types").VcImageryProvider | import("casc-cesium/es/utils/types").VcTerrainProvider, viewer: Cesium.Viewer, instance: VcComponentPublicInstance<{}>) => 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; url: { type: PropType; default: string; }; }>> & { onBeforeLoad?: (instance: VcComponentInternalInstance) => any; onReady?: (readyObj: VcReadyObject) => any; onUnready?: (e: any) => any; onDestroyed?: (instance: VcComponentInternalInstance) => any; onReadyPromise?: (evt: boolean | import("casc-cesium/es/utils/types").VcImageryProvider | import("casc-cesium/es/utils/types").VcTerrainProvider, viewer: Cesium.Viewer, instance: VcComponentPublicInstance<{}>) => any; onErrorEvent?: (evt: Cesium.TileProviderError) => any; }, { url: string | Cesium.Resource; }>; export default _default; export declare type VcTerrainProviderArcgisProps = { /** * The URL of the ArcGIS ImageServer service. */ url?: string | Cesium.Resource; /** * The authorization token to use to connect to the service. */ token?: string; /** * The ellipsoid. If the tilingScheme is specified, this parameter is ignored and the tiling scheme's ellipsoid is used instead. If neither parameter is specified, the WGS84 ellipsoid is used. */ ellipsoid?: Cesium.Ellipsoid; /** * Triggers before the VcTerrainProviderArcgis is loaded. */ onBeforeLoad?: (instance: VcComponentInternalInstance) => void; /** * Triggers when the VcTerrainProviderArcgis is successfully loaded. */ onReady?: (readyObject: VcReadyObject) => void; /** * Triggers when the component load failed. */ onUnready?: (e: any) => void; /** * Triggers when the VcTerrainProviderArcgis is destroyed. */ onDestroyed?: (instance: VcComponentInternalInstance) => void; /** * Triggers when the terrain provider encounters an asynchronous error. */ onErrorEvent?: (evt: Cesium.TileProviderError) => void; /** * Triggers when the provider is ready for use. */ onReadyPromise?: (evt: boolean, viewer: Cesium.Viewer, instance: VcComponentPublicInstance) => void; }; export declare type VcTerrainProviderArcgisRef = VcComponentPublicInstance;