import { WMLayer } from '@opengeoweb/webmap'; import type { OnInitializeLayerProps } from '../../components/OpenLayers/utils/types'; /** * Returns WMLayer instance in STAC GeoTIFF mode. The layer will contains parsed dimensions and styles and keeps a state for these properties. * * @param {string} serviceUrl * @param {string} name * @returns {(WMLayer | null)} */ export declare const useGetStacGeoTIFFWMLayerInstance: (serviceUrl: string, name: string, id?: string, onLayerError?: (layerId: string, message: string) => void) => WMLayer | null; export declare const useGetStacGeoTIFFLayerInstance: (stacCollectionURL: string, parameter: string, layerId?: string, onInitializeLayer?: (payload: OnInitializeLayerProps) => void) => WMLayer | null;