import React from 'react'; import { Map as LeafletMap } from 'leaflet'; declare const EnhancedMap: React.ForwardRefExoticComponent<{ controls?: import("./types").ControlType[] | undefined; Controls?: Record> | undefined; onSearch?: ((text: string) => Promise) | undefined; layers?: import("./types").Layer[] | undefined; tileLayers?: Omit[] | undefined; } & Omit & React.RefAttributes>; export default EnhancedMap;