import * as React from 'react';
import { Map as LeafletMap, MapOptions, TileLayerOptions, LatLngBoundsExpression } from 'leaflet';
import 'leaflet/dist/leaflet.css';
interface IProps {
    Map: React.MutableRefObject<LeafletMap | null>;
    MapOptions?: MapOptions;
    TileLayerOptions: TileLayerOptions;
    TileLayerURL: string;
    Bounds?: LatLngBoundsExpression;
}
declare const Map: (props: IProps) => JSX.Element;
export default Map;
