import { ContextManager, Observable } from '@zcomponent/core'; import { Group } from '../Group'; import * as THREE from 'three'; interface ConstructorProps { /** * @zui * @zdefault true */ previewAtDesignTime: boolean; } /** * Place this component within a `WebXRMovementGroup`. The contents of this group will then be shown to the user when they're choosing * a destination for a 'Teleport' movement. * * Root element: [THREE.Group](https://threejs.org/docs/index.html#api/en/objects/Group) * * @zcomponent * @zicon location_on * @zgroup Deprecated * @ztag three/Object3D/Group/WebXRMovementPreviewGroup * @zparents three/Object3D/Group/WebXRMovementGroup */ export declare class WebXRMovementPreviewGroup extends Group { /** * Whether or not to show the contents of this group when the user is choosing a destination for a 'Teleport' movement. */ previewAtDesignTime: Observable; /** @internal */ innerGroup: THREE.Group; constructor(contextManager: ContextManager, constructorProps: ConstructorProps); } export {};