UNPKG

366 BTypeScriptView Raw
1import { type LayerProps } from '@react-leaflet/core';
2import { TileLayer as LeafletTileLayer, type TileLayerOptions } from 'leaflet';
3export interface TileLayerProps extends TileLayerOptions, LayerProps {
4 url: string;
5}
6export declare const TileLayer: import("react").ForwardRefExoticComponent<TileLayerProps & import("react").RefAttributes<LeafletTileLayer>>;