import { ReactNode } from 'react'; import { Feature, FeatureCollection } from '@peripleo/peripleo'; import { HoverState } from '../../hooks'; interface SymbolLayerProps { data: FeatureCollection | string; id: string; interactive?: boolean; size?: number; symbol?: string; symbolsMap?: { [id: string]: string; }; symbolsProperty?: string; tooltip?(hoverState: HoverState>): ReactNode; } /** * For the general pattern, see: * https://maplibre.org/maplibre-gl-js/docs/examples/add-image/ */ export declare const SymbolLayer: (props: SymbolLayerProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=SymbolLayer.d.ts.map