import { ReactNode } from 'react'; import { Feature, FeatureCollection } from '@peripleo/peripleo'; import { HoverState } from '../../hooks'; interface GeoJSONLayerProps { cluster?: boolean; clusterMaxZoom?: number; clusterMinPoints?: number; clusterProperties?: unknown; clusterRadius?: number; data: FeatureCollection | string; fillStyle?: Object; id: string; interactive?: boolean; pointStyle?: Object; tooltip?(hoverState: HoverState>): ReactNode; strokeStyle?: Object; visible?: boolean; onLoad?(): void; } export declare const GeoJSONLayer: (props: GeoJSONLayerProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=GeoJSONLayer.d.ts.map