/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { InputLayer } from '../scene.js'; import React from 'react'; import { XRDevice } from 'iwer'; interface ControlsProps { xrDevice: XRDevice; inputLayer: InputLayer; pointerLocked: boolean; } type InputModeStore = { inputMode: string; setInputMode: (mode: 'controller' | 'hand') => void; }; export declare const useInputModeStore: import("zustand").UseBoundStore>; export declare const ControlsUI: React.FC; export {}; //# sourceMappingURL=controls.d.ts.map