/// import { MutableRefObject } from "react"; import { Vector3 } from "three"; declare type SnapTurnProps = { hand?: XRHandedness; increment?: number; threshold?: number; }; declare type SmoothLocomotionProps = { hand?: XRHandedness; speed?: number; direction: MutableRefObject; }; declare type VRControllerMovementProps = { position: MutableRefObject; direction: MutableRefObject; snapTurn?: SnapTurnProps; smoothLocomotion?: SmoothLocomotionProps; }; export default function VRControllerMovement(props: VRControllerMovementProps): JSX.Element; export {};