/// export declare function addLibrary(url: string, id: string): HTMLScriptElement; interface MapOptions { center?: any; zoom?: number; minZoom?: number; maxZoom?: number; maxNativeZoom?: number; geolocate?: boolean; tilt?: number; bearing?: number; controls?: boolean; mapType?: any; controlOptions?: any; restrictionBounds?: any; shouldChangeMapMode?: Function; cooperativeGestures?: boolean; } interface MapProps { mapid?: string; options: MapOptions; zoom?: number; bearing?: number; center?: any; tilt?: number; version: string; accessKey: string; environment?: "dev" | "test" | undefined | null; sdkDomain?: string | null; onMapReady?: (map: any, key?: string) => void; onClickLocation?: (args: any) => void; onRightClickLocation?: (args: any) => void; onCameraChanging?: (args: any) => void; onTilesLoaded?: (args: any) => void; children?: any; } declare const MFMap: (props: MapProps) => JSX.Element; export default MFMap;