import { ImageryLayer, ImageryLayerCollection as CesiumImageryLayerCollection } from 'cesium'; import { EventkeyMap } from '../core'; export type ImageryLayerCollectionCesiumEvents = { onLayerAdd?: (layer: ImageryLayer, index: number) => void; onLayerMove?: (layer: ImageryLayer, index: number) => void; onLayerRemove?: (layer: ImageryLayer, index: number) => void; onLayerShowOrHide?: (layer: ImageryLayer, index: number) => void; }; export type ImageryLayerCollectionProps = ImageryLayerCollectionCesiumEvents; export declare const cesiumEventProps: EventkeyMap; declare const ImageryLayerCollection: import('..').CesiumComponentType; export default ImageryLayerCollection;