import { BufferPointMaterial, Cartesian3, BufferPoint as CesiumBufferPoint } from 'cesium'; export type BufferPointProps = { /** The position of the point in world coordinates. */ position?: Cartesian3; /** The material (color, size, outline) for the point. */ material?: BufferPointMaterial; /** Whether the point is visible. */ show?: boolean; /** A feature identifier for picking. */ featureId?: number; }; declare const BufferPoint: import('..').CesiumComponentType; export default BufferPoint;