import { FC } from 'react'; import { Layers, Markers, TileOptions, Zoom } from '../types/types'; type Props = { map: { src: string; tileOptions?: TileOptions; }; layers?: Layers[]; zoom?: Zoom; minZoom?: Zoom; maxZoom?: Zoom; markers?: Markers[]; flyTo?: { latLng: number[]; zoom: Zoom; }; onMessage?: (event: any) => void; onError?: (event: any) => void; onLoadStart?: () => void; startInLoadingState?: boolean; backgroundColor?: string; injectJavascript?: string; }; export declare const RNLeaflet: FC; export {};