UNPKG

304 BTypeScriptView Raw
1import { Map } from 'leaflet';
2import { ReactElement } from 'react';
3export interface MapConsumerProps {
4 children: (map: Map) => ReactElement | null;
5}
6export declare function MapConsumer({ children }: MapConsumerProps): ReactElement<any, string | import("react").JSXElementConstructor<any>> | null;