import * as React from 'react'; import * as L from 'leaflet'; export interface TileLayerProps { attribution?: string; format?: 'pmtiles'; url: string; } export interface TileLayerExtendedProps extends TileLayerProps, L.TileLayer, Omit { } declare const TileLayer: React.FC; export { TileLayer };