interface LayerProps { url: string; options: L.TileLayerOptions; } declare function Layer({ url, options }: LayerProps): null; export default Layer;