import { Ref } from 'react'; import { LeafletMap, LeafletMapConfigInterface, GenericDataRecord } from '@unovis/ts'; export declare type VisLeafletMapRef = { component?: LeafletMap; }; export declare type VisLeafletMapProps = LeafletMapConfigInterface & { data?: Datum[]; ref?: Ref>; className?: string; }; export declare const VisLeafletMapSelectors: typeof import("@unovis/ts/dist/components/leaflet-map/style"); export declare const VisLeafletMap: ((props: VisLeafletMapProps) => JSX.Element | null);