import TileLayer from 'ol/layer/Tile'; import type { Dimension } from '@opengeoweb/webmap'; import type { OnInitializeLayerProps } from '../utils/types'; export interface TimeAwareWMTSLayerProps { layerId?: string; getCapsURL: string; layerName: string; styleName?: string; layerOptions: ConstructorParameters[0]; dimensions?: Dimension[]; visible?: boolean; onInitializeLayer?: (payload: OnInitializeLayerProps) => void; onLayerReady?: (layerId: string) => void; onLayerError?: (layerId: string, message: string) => void; debugMode?: boolean; } export declare const TimeAwareWMTSLayer: React.FC;