/// import { Cartesian3 } from "cesium"; interface PointProps { circleSize: number; position: Cartesian3; pointsLength: number; index: number; onPointClick: Function; } declare const Point: ({ position, circleSize, index, pointsLength, onPointClick }: PointProps) => JSX.Element; export default Point;