import React from 'react'; import type { Dimension } from '@opengeoweb/webmap'; import type { OpenLayersFeatureLayerProps } from './OpenLayersFeatureLayer'; import { getStacFrameItemsToRender, getStacItemLookupWindowForTimes } from './TimeAwareGeoTIFFLayerUtils'; import type { OnInitializeLayerProps } from '../utils/types'; export { getStacFrameItemsToRender, getStacItemLookupWindowForTimes }; interface TimeAwareGeoTIFFLayerProps extends OpenLayersFeatureLayerProps { layerId?: string; stacCollectionUrl: string; layerName: string; styleName?: string; dimensions?: Dimension[]; onInitializeLayer?: (payload: OnInitializeLayerProps) => void; opacity?: number; visible?: boolean; } export declare const TimeAwareGeoTIFFLayer: React.FC;