import TileLayer from 'ol/layer/Tile'; import type { LayerFoundation } from '@opengeoweb/webmap'; export interface WMTSLayerProps { getCapsURL: string; layerName: string; tileMatrixSet: string; layerOptions: ConstructorParameters[0]; layerProps?: LayerFoundation; } export declare const WMTSLayer: React.FC;