import { Ref } from 'react'; import { LeafletFlowMap, LeafletFlowMapConfigInterface, GenericDataRecord } from '@unovis/ts'; export declare type VisLeafletFlowMapRef = { component?: LeafletFlowMap; }; export declare type VisLeafletFlowMapProps = LeafletFlowMapConfigInterface & { data?: { points: PointDatum[]; flows?: FlowDatum[]; }; ref?: Ref>; className?: string; }; export declare const VisLeafletFlowMapSelectors: typeof import("@unovis/ts/dist/components/leaflet-map/style"); export declare const VisLeafletFlowMap: ((props: VisLeafletFlowMapProps) => JSX.Element | null);