import { ReactElement } from 'react'; import { BoundsViewport, AnimationFunction } from './Types'; import { BoundsDriftMarkerProps } from './BoundsDriftMarker'; interface SemanticMarkersProps { onBoundsChanged: (bvp: BoundsViewport) => void; markers: Array>; recenterMarkers?: boolean; animation: { method: string; duration: number; animationFunction: AnimationFunction; } | null; } /** * Renders the semantic markers layer * * * @param props */ export default function SemanticMarkers({ onBoundsChanged, markers, animation, recenterMarkers, }: SemanticMarkersProps): JSX.Element; export {}; //# sourceMappingURL=SemanticMarkers.d.ts.map