import React from 'react'; import { GeoJson, Layers, Markers, RNLeafletRef, TFlyTo, Zoom } from '../types/types'; declare type Props = { mapLayers: Layers[]; geoJson?: GeoJson; zoom?: Zoom; minZoom?: Zoom; maxZoom?: Zoom; markers?: Markers[]; flyTo?: TFlyTo; onMessage?: (event: any) => void; onError?: (event: any) => void; onLoadStart?: () => void; startInLoadingState?: boolean; backgroundColor?: string; injectJavascript?: string; }; export declare const RNLeaflet: React.ForwardRefExoticComponent>; export {};