export default PointCloudNode; declare class PointCloudNode extends THREE.EventDispatcher { constructor(numPoints: number | undefined, layer: any); numPoints: number; layer: any; children: any[]; bbox: THREE.Box3; sse: number; get pointSpacing(): number; get id(): void; add(node: any, indexChild: any): void; createChildAABB(node: any): void; load(): any; findCommonAncestor(node: any): any; } import * as THREE from 'three';