import { Ref } from 'react'; import { TopoJSONMap, TopoJSONMapConfigInterface } from '@unovis/ts'; export declare type VisTopoJSONMapRef = { component?: TopoJSONMap; }; export declare type VisTopoJSONMapProps = TopoJSONMapConfigInterface & { data?: { areas?: AreaDatum[]; points?: PointDatum[]; links?: LinkDatum[]; }; ref?: Ref>; }; export declare const VisTopoJSONMapSelectors: typeof import("@unovis/ts/dist/components/topojson-map/style"); export declare const VisTopoJSONMap: ((props: VisTopoJSONMapProps) => JSX.Element | null);