import * as THREE from 'three'; import { ConstructorProps, ContextManager } from '@zcomponent/core'; import { Object3D } from './Object3D'; type PropType = TObj[TProp]; /** * Represents a point in 3D space. * * Root element: [THREE.Group](https://threejs.org/docs/index.html#api/en/core/Object3D) * * @zcomponent * @zicon point_scan * @ztag three/Object3D/Point * @zparents three/PointHost/** */ export declare class Point extends Object3D { element: THREE.Object3D; /** @zignore */ scale: PropType; /** @zignore */ rotation: PropType; constructor(ctx: ContextManager, props: ConstructorProps, parentForChildren?: THREE.Object3D); } export {};