import React from 'react'; import { LayerSourceProps } from './LayerManager'; /** * A React component that creates and manages an MVT layer. * * MVT data is tile-based, so unlike GeoJSON we do not have one complete feature * collection in memory. Hover/click tooltips use the picked tile feature. * * @param {LayerSourceProps} props - The props for the MVTLayerSource component. * @returns {React.ReactNode} Tooltip element for this layer (if any), no DOM for the layer itself. */ export declare const MVTLayerSource: React.MemoExoticComponent<({ layer, onLayerUpdate, CustomTooltip }: LayerSourceProps) => any>;