import { ClipBounds } from './EllipsoidInstances'; export interface CenterPointInstancesProps { positions: Float32Array; count: number; color: string | number; size: number; clip?: ClipBounds; } /** Renders center points as a point cloud with GPU-based clip support */ export declare function CenterPointInstances({ positions, count, color, size, clip, }: CenterPointInstancesProps): import("react/jsx-runtime").JSX.Element;