import { Component, ContextManager } from '@zcomponent/core'; import { XRSessionMode } from '../webxrcontext'; export interface ConstructorProps { /** * WebXR session mode to start on launch. * @zprop * @zdefault undefined */ startOnLaunch?: XRSessionMode; } /** * @zcomponent * @ztag three/WebXRSettings * @zicon settings * @zgroup Deprecated * @zparents three/Object3D/Group/** */ export declare class WebXRSettings extends Component { private _context; /** * Controls whether the WebXR session should be started when the component is created. * @param contextManager - The context manager. * @param constructorProps - The constructor properties. */ constructor(contextManager: ContextManager, constructorProps: ConstructorProps); }