import * as THREE from 'three'; import { ConstructorProps, ContextManager } from '@zcomponent/core'; import { Object3D } from './Object3D'; /** * Collect multiple nodes together. * * The child nodes' locations in 3D space are relative to the location of the group node. * * Root element: [THREE.Group](https://threejs.org/docs/index.html?q=Grou#api/en/objects/Group) * * @zcomponent * @zicon group * @ztag three/Object3D/Group/Group * @zparents three/Object3D/Group/** */ export declare class Group extends Object3D { /** * The THREE.Group object that represents this component. */ element: THREE.Group; constructor(ctx: ContextManager, props: ConstructorProps, parentForChildren?: THREE.Object3D); }