Version: 0.1.0-dev0.2.0-dev0.2.00.2.10.2.20.3.00.4.0-beta.10.4.0-rc.10.4.00.4.10.5.00.6.00.6.10.6.20.7.00.8.0-rc.10.8.0-rc.20.8.0-rc.30.8.00.8.10.9.00.10.00.10.10.10.20.11.00.11.10.11.20.11.30.11.40.11.50.11.60.11.70.12.00.12.10.12.20.12.31.0.0-beta.11.0.0-beta.21.0.0-beta.31.0.0-rc.11.0.0-rc.21.0.0-rc.31.0.01.0.11.0.21.0.31.1.01.1.11.1.21.1.31.1.41.1.51.1.61.1.71.2.01.2.11.2.21.3.01.3.11.4.01.4.11.5.01.6.01.6.11.6.21.6.31.6.41.6.51.6.61.7.01.7.11.7.21.7.31.7.41.7.51.7.61.7.71.7.81.8.01.8.11.8.21.9.01.9.12.0.0-beta.12.0.0-rc.12.0.0-rc.22.0.0-rc.32.0.02.0.12.1.02.1.12.1.22.1.32.1.42.2.02.2.12.3.02.4.02.5.02.6.02.6.12.6.22.6.32.7.02.8.03.0.0-alpha.03.0.0-beta.13.0.0-beta.23.0.0-beta.33.0.0-beta.43.0.0-beta.53.0.0-rc.03.0.03.0.13.0.23.0.33.0.43.0.53.1.03.2.03.2.13.2.23.2.33.2.43.2.54.0.0-alpha.04.0.0-alpha.14.0.0-alpha.24.0.0-beta.04.0.0-beta.14.0.04.0.14.0.24.1.04.2.04.2.15.0.0-rc.15.0.0-rc.25.0.0
import { type LayerProps } from '@react-leaflet/core';
import { TileLayer as LeafletTileLayer, type TileLayerOptions } from 'leaflet';
export interface TileLayerProps extends TileLayerOptions, LayerProps {
url: string;
}
export declare const TileLayer: import("react").ForwardRefExoticComponent<TileLayerProps & import("react").RefAttributes<LeafletTileLayer>>;